I need to find all the .psd files on my Linux system (dedicated web hosting). I tried something like this: ls -R *.psd, but that\'s not working. Su
You can use the following find command to do that:
find /path/to/search -iname '*.psd'
iname does a case insensitive search.
you also can
ls ./**/*.psd
but:
shopt -s globstar #in your .bashrc or .profile, etc....shopt -s nocaseglob too)