tldr/pages/common/ln.md
Denis Sokolov 5554a6d2a4 ln: remove overwrite option for directories
-T is not present on my system, and the behavior itself is completely unintuitive.
How exactly do you overwrite a directory? Do you recursively delete its children?
2016-01-05 23:18:49 +02:00

16 lines
333 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}}`
- overwrite a symbolic link to a file
`ln -sf {{path/to/new/original/file}} {{path/to/file/link}}`
- create a hard link to a file or folder
`ln {{path/to/original/file}} {{path/to/link}}`