如何找到没有扩展名的文件?例如,在以下屏幕中,我希望返回文件 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
答案1
尝试:
# find -type f -not -name '*.*'
祝你好运!
答案2
你只需做find . \! -name '*.*'
-type f
(如果您需要确切的文件则添加)