-5

Unix 命令返回所有以单词 report 开头的文件,但具有日志扩展名的文件除外。结果应该给出诸如report.txt而不是report.log文件之类的输出

4

1 回答 1

2

您可以为此使用find :

$ find . -type f -name report\* ! -name \*.log
于 2012-11-15T12:48:05.210 回答