Softwares ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Main /
Linux-Creating-Symbolic-Link-ln-commandMain.Linux-Creating-Symbolic-Link-ln-command HistoryHide minor edits - Show changes to output Added lines 16-19:
!!ln -s [path-to-file-name] [link-name] !!Example: Added lines 1-41:
(:Google1:) (:Googletxt:) ---- !!ln - make links between files [@ SYNOPSIS ln [OPTION]... [-T] TARGET LINK_NAME (1st form) ln [OPTION]... TARGET (2nd form) ln [OPTION]... TARGET... DIRECTORY (3rd form) ln [OPTION]... -t DIRECTORY TARGET... (4th form) @] !!-s, --symbolic #make symbolic links instead of hard links (:table border=1 width=50% bgcolor=yellow cellspacing=0 :) (:cellnr:) [@ [fedora@fedora Desktop]$ ln -s /home/fedora/Downloads/owl/rssowl/RSSOwl rss [fedora@fedora Desktop]$ ll total 16 lrwxrwxrwx. 1 fedora fedora 40 Aug 23 15:02 rss -> /home/fedora/Downloads/owl/rssowl/RSSOwl @] (:tableend:) !!Verification. (:table border=1 width=50% bgcolor=yellow cellspacing=0 :) (:cellnr:) [@ [fedora@fedora Desktop]$ file rss rss: symbolic link to `/home/fedora/Downloads/owl/rssowl/RSSOwl' @] (:tableend:) ---- (:Googlemm:) |