mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-01 23:17:56 +01:00
331 B
331 B
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}}