Answers for "how to create symlink in linux"

17

create a symlink

ln -s [/path/to/file] [/path/to/symlink]
Posted by: Guest on March-25-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
7

how to create symlink in linux

ln -s <location_of_file1> <desired_location_of_symlink>
Posted by: Guest on November-02-2020
4

symlink command

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language