Is there an easy way I can print the full path of file.txt ?
file.txt
file.txt = /nfs/an/disks/jj/home/dir/file.txt
The
Usually:
find `pwd` | grep
Alternatively, just for the current folder:
find `pwd` -maxdepth 1 | grep