Answers for "symbolic link creation link"

0

create symbolic link

ln -s /path/to/original /path/to/link
Posted by: Guest on March-20-2020
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

Browse Popular Code Answers by Language