01 / 07
A note saying "look over there"
Look again at what you saw last lesson.
~ $ ls -l /bin/lslrwxrwxrwx 1 root root 7 /bin/ls -> busyboxWhat is inside /bin/ls was not the ls program. It is a note saying "look at busybox".
That is called a symbolic link. "Symbolic" as in "made of a symbol", and it is often shortened to symlink.
Here is how you make one.
~ $ ln -s origin.txt link.txt~ $ cat link.txthello <- the contents of origin.txt come outln is short for link, and the -s is the s of symbolic.
Watch the order.
ln -s what-it-points-at the-name-to-make ^ ^ the real thing the note (the new one)Think of it as the same order as cp: the original, then the new name.