1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-19 02:10:57 +02:00

(ln invocation): Change a few paths' to file names'.

This commit is contained in:
Jim Meyering
2005-06-19 13:39:51 +00:00
parent acb16ca45c
commit e828977ada

View File

@@ -7738,13 +7738,13 @@ ln -s adir/a .
Bad Example:
# Hard coded paths don't move well.
# Hard coded file names don't move well.
ln -s $(pwd)/a /some/dir/
Better Example:
# Relative paths survive directory moves and also work across
# networked file systems.
# Relative file names survive directory moves and also
# work across networked file systems.
ln -s afile anotherfile
ln -s ../adir/afile yetanotherfile
@end smallexample