mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-01 17:17:56 +01:00
Merge pull request #289 from waldyrious/patch-2
reword to prevent ambiguity
This commit is contained in:
commit
b4beb34a50
1 changed files with 5 additions and 5 deletions
|
@ -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}}`
|
||||
|
|
Loading…
Reference in a new issue