Say that I setup a symbolic link:
ln -s /root/Public/mytextfile.txt /root/Public/myothertextfile.txt
is there a way to see what the target of myothertextfile.txt is using the command line?
|
Say that I setup a symbolic link:
is there a way to see what the target of |
|||
|
|
|
readlink is the command you want. You should look at the man page for the command. Because if you want to follow a chain of symbolic links to the actual file, then you need the -e or -f switch:
|
||||
|
|
|
This will also work:
but |
|||
|
|