Find

查找沒有任何副檔名的文件

  • April 19, 2012

如何找到沒有副檔名的文件?例如,在以下螢幕中,我想返回文件 sconnect 而不是 .xls

-rwxr-xr-x 1 root root 12K Mar  7 19:29 ./Purchase_ORDER.xls
-rwxr-xr-x 1 root root 176 Mar  7 19:29 ./sconnect

嘗試:

# find -type f -not -name '*.*'

祝你好運!

你只是做find . \! -name '*.*'

-type f如果您需要確切的文件,請添加)

引用自:https://serverfault.com/questions/381040