blob: 7b9bfa6463ac94c2ca6ad75974f1540de5deb76b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
checklinks - Automatically symlink files
Usage: checklinks [ -q ]
Options:
-q
quiet. No output if a symlink remained unchained
checklinks will read $PWD/.links for instructions about symlinks.
Each line contains, separated by spaces:
the symlink type
This may be one of 'soft' or 'hard', indicating it either is a
softlink/symlink or a hardlink.
Note: The following definitions of source/target only apply for soft
links. The corresponding meanings for hard links are unknown.
the source
path of the source, i.e. the symlink
This is relative to $HOME
the target
path of the target, i.e. the symlink's destination
This is relative to the source. See path_resolution(7)
Lines beginning with an invalid symlink type will be ignored.
|