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

Merge pull request #88 from doyle/feature/ln

Adds some examples for ln
This commit is contained in:
Romain Prieto 2014-02-18 12:22:48 +11:00
commit 0f3e761026

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}}`