When I\'m using ls -la symlinkName or stat symlinkName not all the path is displayed (e.g ../../../one/two/file.txt)
ls -la symlinkName
stat symlinkName
../../../one/two/file.txt
What is
unix flavors -> ll symLinkName
ll symLinkName
OSX -> readlink symLinkName
readlink symLinkName
Difference is 1st way would display the sym link path in a blinking way and 2nd way would just echo it out on the console.