比如以下五行,我要将带有英文字母a的一行全部批量删除1234551243243123aa244123123981232137aa 2013-04-11 19:32 提问者采纳 我这里是英文版,你自己估计着对应一下 在文件中按 Ctrl + H (查找/替换) Find what 里面填入: ^.*aa.*$Replace with 里面为空最下面 Regular expression 勾选点 Replace All 这样全部带有 aa 的行都被清空,变为空行,如果你想删除全部空行 Fin…
linux环境下删除包含特殊字符的文件或目录 ls -liUse find command as follows to delete the file if the file has inode number 4063242: $ find . -inum 4063242 -deleteOR$ find . -inum 4063242 -exec rm -i {} \;…