1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 20:44:56 +02:00

reword to prevent ambiguity

"original" can be associated with the origin of the link and lead to confusion if not read carefully.

Also, the third example seems to have been copied from the prior example but not fully adapted: "original/file" should have said (if I'm reading this correctly) "original/folder".
This commit is contained in:
Waldir Pimenta 2015-08-10 19:03:34 +01:00
parent f38c34f484
commit dff2a308ac

View file

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