Answers for "linux symbolic link"

17

create a symlink

ln -s [/path/to/file] [/path/to/symlink]
Posted by: Guest on March-25-2020
13

create symbolic link linux

$ ln -s file1 link1
#Example: ln -s /var/file_i_want_to_link /etc/symbolic_link_name
Posted by: Guest on March-23-2020
4

symlink command

ln -s source_file myfile
Posted by: Guest on July-07-2020
2

linux symbolic link

ln -s <file/folder to be linked> <path of the link to be created>
ln -s /home/james/transactions.txt trans.txt
Posted by: Guest on May-14-2021
0

unix symbolic link

ln -s source_file myfile
Posted by: Guest on January-26-2021

Code answers related to "linux symbolic link"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language