Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 417 Bytes

2020-04-28_14-05-53.md

File metadata and controls

19 lines (10 loc) · 417 Bytes

I can create a symbolic link on Linux with ln -s [absolute_path_to_target] [absolute_path_to_new_link]..

The second argument, [absolute_path_to_new_link] is optional.


Example 1:

ln -s /etc /home/miku86/my-custom-link

I get a link to /etc at the location /home/miku86/my-custom-link.


Example 2:

ln -s /etc

I get a link to /etc at the current location with the name of the target, etc.