Answers for "Symbolic Link"

1

symbolic link

# Create a symbolic link to a file or directory:
ln -s /path/to/file_or_directory path/to/symlink
# Overwrite an existing symbolic link to point to a different file:
ln -sf /path/to/new_file path/to/symlink
# Get the target of symbolic libnk
readlink -f path/to/symlink
# ls -l path/to/symlink
Posted by: Guest on June-13-2021
0

Symbolic Link

ln -s my_file.txt my_link.txtCopy
Posted by: Guest on June-09-2021

Code answers related to "Symbolic Link"

Browse Popular Code Answers by Language