Symbolic links: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

3 August 2022

  • curprev 04:3404:34, 3 August 2022Travis talk contribs 480 bytes +480 Created page with "Symbolic Links are essentially aliases to other file locations. They can point to directories, binaries, or files. The most common type are soft links which are explained in this article. == How to add a symbolic link == $ ln -s {/path/to/file-name} {link-name} $ ln -s /shared/sales/data/file.txt sales.data.txt $ vi sales.data.txt $ ls -l sales.data.txt == How to delete symbolic link == $ rm {link-name} $ rm sales.data.txt $ ls -l $ ls -l /shared/sales/data/fil..." Tag: Visual edit