1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/ln.md

16 lines
331 B
Markdown
Raw Normal View History

# 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 folder
`ln -sfT {{path/to/new/original/file}} {{path/to/link}}`
- create a hard link to a file or folder
`ln {{path/to/original/file}} {{path/to/link}}`