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
.psd
ls -R *.psd
you also can
ls ./**/*.psd
but:
shopt -s globstar
shopt -s nocaseglob