1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 20:35:26 +02:00

Merge pull request #180 from andreassimon/patch-1

Added example of overwriting an existing link
This commit is contained in:
Romain Prieto 2014-04-22 12:41:29 +10:00
commit 1c3b14eb59

View file

@ -6,6 +6,10 @@
`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}}`