📜  ubuntu 查找除名称之外的文件 - Shell-Bash 代码示例
📅  最后修改于: 2022-03-11 14:51:04.786000             🧑  作者: Mango
代码示例1
#Find all .dot files but ignore .htaccess file:
find . -type f \( -iname ".*" ! -iname ".htaccess" \)