1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 01:18:00 +01:00
tldr/pages/common/ln.md
2016-01-22 01:00:04 +00:00

15 lines
331 B
Markdown

# ln
> Creates links to files and folders.
- Create a symbolic link to a file (or folder):
`ln -s {{path/to/file}} {{path/to/symlink}}`
- Overwrite an existing symbolic to point to a different file:
`ln -sf {{path/to/new/file}} {{path/to/symlink}}`
- Create a hard link to a file:
`ln {{path/to/file}} {{path/to/hardlink}}`