1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-08 16:15:49 +02:00

Added example of overwriting an existing link

This commit is contained in:
Andreas Simon 2014-04-01 10:47:34 +02:00
parent c92c84e2df
commit 0b8d32a1a8

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}}`