List files with full path
Use the following command to get the list of files with full path:
find $PWD #to find all the files in the current directory
find $PWD #to find all the files in the current directory
Or specify a particular folder so:
find /home/user/music/
To filter the results, pipe it with grep
find /home/user/music | grep -E [nN]orah | grep mp3
Comments