Raveen Kumar

Unix find

To exclude files or perform reverse match

find . -not -iname "file"

To perform regex matching

find . -regex ".*file"

find . -type l -print

#Linux #Unix #Command-Line