diff --git a/pages/common/ln.md b/pages/common/ln.md index 3d7cc2e96..b52a12aff 100644 --- a/pages/common/ln.md +++ b/pages/common/ln.md @@ -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}}`