Within a bash script, I know I can check if a file is a symbolic link with the following syntax
if [ -L $path ]
Does any one know how I would test if that path was linked to a particular path?
Within a bash script, I know I can check if a file is a symbolic link with the following syntax
if [ -L $path ]
Does any one know how I would test if that path was linked to a particular path?