diff options
author | Jim Meyering <jim@meyering.net> | 2001-01-07 16:11:14 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-01-07 16:11:14 +0000 |
commit | aaf9e9a8202a0ec3da80d79cfde2fd1327839678 (patch) | |
tree | b98143415a85f5c31a1cb59161a24829fe251d65 /src | |
parent | 674fed73ec17863c1179ae58b023e0746cabada2 (diff) | |
download | coreutils-aaf9e9a8202a0ec3da80d79cfde2fd1327839678.tar.xz |
(usage): Split a string that was longer than 2048 bytes.
Diffstat (limited to 'src')
-rw-r--r-- | src/cp.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ /* cp.c -- file copying (main routines) - Copyright (C) 89, 90, 91, 1995-2000 Free Software Foundation. + Copyright (C) 89, 90, 91, 1995-2001 Free Software Foundation. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -172,6 +172,8 @@ Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n\ special files like FIFOs or /dev/zero\n\ --remove-destination remove each existing destination file before\n\ attempting to open it (contrast with --force)\n\ +")); + printf (_("\ --sparse=WHEN control creation of sparse files\n\ -R, --recursive copy directories recursively\n\ --strip-trailing-slashes remove any trailing slashes from each SOURCE\n\ |