mirror of https://github.com/CrimsonTome/tldr.git
12 lines
232 B
Markdown
12 lines
232 B
Markdown
|
# 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}}`
|