Linux Link, Unlink folder

Table of Contents

Linux Link, Unlink folder

Link Folder

Symbolic or soft link (files or directories, more flexible and self documenting)

#     Source                             Link
ln -s /home/jake/doc/test/2000/something /home/jake/xxx

Hard link (files only, less flexible and not self documenting)

#   Source                             Link
ln /home/jake/doc/test/2000/something /home/jake/xxx

Unlink folder

unlink symlink_name

  1. https://stackoverflow.com/questions/9587445/how-to-create-a-link-to-a-directory-on-linux
  2. https://linuxize.com/post/how-to-remove-symbolic-links-in-linux/

Leave a Reply

Your email address will not be published. Required fields are marked *