1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 12:06:00 +02:00

Adds some examples for ln

Hopefully this will help people remember if the source
is the first or second argument
This commit is contained in:
Christian Doyle 2014-02-17 11:59:07 -05:00
parent 06ee4048bb
commit 6b6772f9d5

11
common/ln.md Normal file
View file

@ -0,0 +1,11 @@
# ln
> Creates links to files and folders
- create a symbolic link to a file or folder
`ln -s {{path/to/original/file}} {{path/to/link}}`
- create a hard link to a file or folder
`ln {{path/to/original/file}} {{path/to/link}}`