标签: linux unix grep
在给定目录中或说出包含具有各种扩展名的文件名列表的报告文件。基本上我想列出不是少量文件扩展名的文件。说.log,.html,.txt。有人可以帮我准确地grep排除这些文件扩展名。提前致谢
答案 0 :(得分:0)
你可以尝试下面的grep命令。
grep -vE '.*\.(log|html|txt)$' file
来自man grep
man grep
-v, --invert-match select non-matching lines