From 39366733c3fe943363566756e2e152c45a1b3cb2 Mon Sep 17 00:00:00 2001 From: Patrick J Volkerding Date: Fri, 25 May 2018 23:29:36 +0000 Subject: Fri May 25 23:29:36 UTC 2018 patches/packages/glibc-zoneinfo-2018e-noarch-2_slack14.2.txz: Rebuilt. Handle removal of US/Pacific-New timezone. If we see that the machine is using this, it will be automatically switched to US/Pacific. --- slackbook/html/file-commands-link.html | 105 --------------------------------- 1 file changed, 105 deletions(-) delete mode 100644 slackbook/html/file-commands-link.html (limited to 'slackbook/html/file-commands-link.html') diff --git a/slackbook/html/file-commands-link.html b/slackbook/html/file-commands-link.html deleted file mode 100644 index 8a3784fa7..000000000 --- a/slackbook/html/file-commands-link.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - -Aliasing files with ln - - - - - - - - - - - -
-

10.7 Aliasing -files with ln

- -

ln(1) is used to create links between files. These links can -be either hard links or soft (symbolic) links. The differences between the two kinds of -links were discussed in Section 9.3. If you -wanted to make a symbolic link to the directory /var/media/mp3 -and place the link in your home directory, you would do this:

- - - - - -
-
-% ln -s /var/media/mp3 ~/mp3
-
-
- -

The -s option tells ln to make a -symbolic link. The next option is the target of the link, and the final option is what to -call the link. In this case, it will just make a file called mp3 in your home directory that points to /var/media/mp3. You can call the link itself whatever you want by -just changing the last option.

- -

Making a hard link is just as simple. All you have to do is leave off the -s option. Hard links may not normally refer to directories or span -file systems, however. To create a hard link /usr/bin/email to -/usr/bin/mutt, simply type the following:

- - - - - -
-
-# ln /usr/bin/mutt /usr/bin/email
-
-
-
- - - - - -- cgit v1.2.3