diff options
author | Jim Meyering <jim@meyering.net> | 1999-12-23 09:34:48 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-12-23 09:34:48 +0000 |
commit | ff9eed5ff557cce495bb307fe3fabfcfbce1ca8e (patch) | |
tree | d299f030055ae9de17b070a9f71f0d839169ce32 /src | |
parent | 176efa50920787b7dc11852640467f473445690f (diff) | |
download | coreutils-ff9eed5ff557cce495bb307fe3fabfcfbce1ca8e.tar.xz |
(usage): Correct typos.
List new --target-directory=... usage.
Reported by Göran Uddeborg
Diffstat (limited to 'src')
-rw-r--r-- | src/ln.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -324,8 +324,9 @@ usage (int status) printf (_("\ Usage: %s [OPTION]... TARGET [LINK_NAME]\n\ or: %s [OPTION]... TARGET... DIRECTORY\n\ + or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n\ "), - program_name, program_name); + program_name, program_name, program_name); printf (_("\ Create a link to the specified TARGET with optional LINK_NAME. If there is\n\ more than one TARGET, the last argument must be a directory; create links\n\ @@ -340,7 +341,8 @@ with --symbolic. When creating hard links, each TARGET must exist.\n\ -i, --interactive prompt whether to remove destinations\n\ -s, --symbolic make symbolic links instead of hard links\n\ -S, --suffix=SUFFIX override the usual backup suffix\n\ - --target-directory=DIR move all SOURCE arguments into directory DIR\n\ + --target-directory=DIRECTORY specify the DIRECTORY in which to create\n\ + the links\n\ -v, --verbose print name of each file before linking\n\ --help display this help and exit\n\ --version output version information and exit\n\ |