/ Published in: Bash
Find *.txt file but ignore hidden .txt file
Expand |
Embed | Plain Text
$ find . -type f \( -iname "*.txt" ! -iname ".*" \)
You need to login to post a comment.
chrisaiv on 12/12/08
1 person have marked this snippet as a favorite
Find *.txt file but ignore hidden .txt file
$ find . -type f \( -iname "*.txt" ! -iname ".*" \)
You need to login to post a comment.