Answers for "ubuntu find file except name"

0

ubuntu find file except name

#Find all .dot files but ignore .htaccess file:
find . -type f \( -iname ".*" ! -iname ".htaccess" \)
Posted by: Guest on June-09-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language