How to Get the Full Path of a File in Linux/Unix

filelinuxpathunix

Is there an easy way I can print the full path of file.txt ?

file.txt = /nfs/an/disks/jj/home/dir/file.txt

The <command>

dir> <command> file.txt  

should print

/nfs/an/disks/jj/home/dir/file.txt

Best Answer

Use readlink:

readlink -f file.txt
Related Question