Answers for "Create Symlink"

17

create a symlink

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

linux symlink directory example

ln -s /mnt/external-drive ~/mydrive
Posted by: Guest on April-01-2020
5

create symbolic link

ln -s source_file symbolic_link
Posted by: Guest on August-12-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

create symlink

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

Create Symlink

ln -s /path/to/original /path/to/link
Posted by: Guest on March-20-2020

Browse Popular Code Answers by Language