diff options
-rw-r--r-- | coreutils/cp.c | 15 | ||||
-rw-r--r-- | include/libbb.h | 7 |
2 files changed, 17 insertions, 5 deletions
diff --git a/coreutils/cp.c b/coreutils/cp.c index 05c725cd0..8d93c6fe4 100644 --- a/coreutils/cp.c +++ b/coreutils/cp.c | |||
@@ -48,6 +48,7 @@ | |||
48 | //usage: "\n -f Overwrite" | 48 | //usage: "\n -f Overwrite" |
49 | //usage: "\n -i Prompt before overwrite" | 49 | //usage: "\n -i Prompt before overwrite" |
50 | //usage: "\n -l,-s Create (sym)links" | 50 | //usage: "\n -l,-s Create (sym)links" |
51 | //usage: "\n -T Treat DEST as a normal file" | ||
51 | //usage: "\n -u Copy only newer files" | 52 | //usage: "\n -u Copy only newer files" |
52 | 53 | ||
53 | #include "libbb.h" | 54 | #include "libbb.h" |
@@ -93,6 +94,7 @@ int cp_main(int argc, char **argv) | |||
93 | "no-dereference\0" No_argument "P" | 94 | "no-dereference\0" No_argument "P" |
94 | "recursive\0" No_argument "R" | 95 | "recursive\0" No_argument "R" |
95 | "symbolic-link\0" No_argument "s" | 96 | "symbolic-link\0" No_argument "s" |
97 | "no-target-directory\0" No_argument "T" | ||
96 | "verbose\0" No_argument "v" | 98 | "verbose\0" No_argument "v" |
97 | "update\0" No_argument "u" | 99 | "update\0" No_argument "u" |
98 | "remove-destination\0" No_argument "\xff" | 100 | "remove-destination\0" No_argument "\xff" |
@@ -122,6 +124,8 @@ int cp_main(int argc, char **argv) | |||
122 | * remove each existing destination file before attempting to open | 124 | * remove each existing destination file before attempting to open |
123 | * --parents | 125 | * --parents |
124 | * use full source file name under DIRECTORY | 126 | * use full source file name under DIRECTORY |
127 | * -T, --no-target-directory | ||
128 | * treat DEST as a normal file | ||
125 | * NOT SUPPORTED IN BBOX: | 129 | * NOT SUPPORTED IN BBOX: |
126 | * --backup[=CONTROL] | 130 | * --backup[=CONTROL] |
127 | * make a backup of each existing destination file | 131 | * make a backup of each existing destination file |
@@ -140,8 +144,6 @@ int cp_main(int argc, char **argv) | |||
140 | * override the usual backup suffix | 144 | * override the usual backup suffix |
141 | * -t, --target-directory=DIRECTORY | 145 | * -t, --target-directory=DIRECTORY |
142 | * copy all SOURCE arguments into DIRECTORY | 146 | * copy all SOURCE arguments into DIRECTORY |
143 | * -T, --no-target-directory | ||
144 | * treat DEST as a normal file | ||
145 | * -x, --one-file-system | 147 | * -x, --one-file-system |
146 | * stay on this file system | 148 | * stay on this file system |
147 | * -Z, --context=CONTEXT | 149 | * -Z, --context=CONTEXT |
@@ -176,6 +178,12 @@ int cp_main(int argc, char **argv) | |||
176 | if (d_flags < 0) | 178 | if (d_flags < 0) |
177 | return EXIT_FAILURE; | 179 | return EXIT_FAILURE; |
178 | 180 | ||
181 | if (flags & FILEUTILS_NO_TARGET_DIR) { /* -T */ | ||
182 | if (!(s_flags & 2) && (d_flags & 2)) | ||
183 | /* cp -T NOTDIR DIR */ | ||
184 | bb_error_msg_and_die("'%s' is a directory", last); | ||
185 | } | ||
186 | |||
179 | #if ENABLE_FEATURE_CP_LONG_OPTIONS | 187 | #if ENABLE_FEATURE_CP_LONG_OPTIONS |
180 | //bb_error_msg("flags:%x FILEUTILS_RMDEST:%x OPT_parents:%x", | 188 | //bb_error_msg("flags:%x FILEUTILS_RMDEST:%x OPT_parents:%x", |
181 | // flags, FILEUTILS_RMDEST, OPT_parents); | 189 | // flags, FILEUTILS_RMDEST, OPT_parents); |
@@ -193,11 +201,14 @@ int cp_main(int argc, char **argv) | |||
193 | if (!((s_flags | d_flags) & 2) | 201 | if (!((s_flags | d_flags) & 2) |
194 | /* ...or: recursing, the 1st is a directory, and the 2nd doesn't exist... */ | 202 | /* ...or: recursing, the 1st is a directory, and the 2nd doesn't exist... */ |
195 | || ((flags & FILEUTILS_RECUR) && (s_flags & 2) && !d_flags) | 203 | || ((flags & FILEUTILS_RECUR) && (s_flags & 2) && !d_flags) |
204 | || (flags & FILEUTILS_NO_TARGET_DIR) | ||
196 | ) { | 205 | ) { |
197 | /* Do a simple copy */ | 206 | /* Do a simple copy */ |
198 | dest = last; | 207 | dest = last; |
199 | goto DO_COPY; /* NB: argc==2 -> *++argv==last */ | 208 | goto DO_COPY; /* NB: argc==2 -> *++argv==last */ |
200 | } | 209 | } |
210 | } else if (flags & FILEUTILS_NO_TARGET_DIR) { | ||
211 | bb_error_msg_and_die("too many arguments"); | ||
201 | } | 212 | } |
202 | 213 | ||
203 | while (1) { | 214 | while (1) { |
diff --git a/include/libbb.h b/include/libbb.h index 5f25b5dde..a93864020 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -404,10 +404,11 @@ enum { /* cp.c, mv.c, install.c depend on these values. CAREFUL when changing th | |||
404 | /* -P = -d (mapped in cp.c) */ | 404 | /* -P = -d (mapped in cp.c) */ |
405 | FILEUTILS_VERBOSE = (1 << 12) * ENABLE_FEATURE_VERBOSE, /* -v */ | 405 | FILEUTILS_VERBOSE = (1 << 12) * ENABLE_FEATURE_VERBOSE, /* -v */ |
406 | FILEUTILS_UPDATE = 1 << 13, /* -u */ | 406 | FILEUTILS_UPDATE = 1 << 13, /* -u */ |
407 | FILEUTILS_NO_TARGET_DIR = 1 << 14, /* -T */ | ||
407 | #if ENABLE_SELINUX | 408 | #if ENABLE_SELINUX |
408 | FILEUTILS_PRESERVE_SECURITY_CONTEXT = 1 << 14, /* -c */ | 409 | FILEUTILS_PRESERVE_SECURITY_CONTEXT = 1 << 15, /* -c */ |
409 | #endif | 410 | #endif |
410 | FILEUTILS_RMDEST = 1 << (15 - !ENABLE_SELINUX), /* --remove-destination */ | 411 | FILEUTILS_RMDEST = 1 << (16 - !ENABLE_SELINUX), /* --remove-destination */ |
411 | /* | 412 | /* |
412 | * Hole. cp may have some bits set here, | 413 | * Hole. cp may have some bits set here, |
413 | * they should not affect remove_file()/copy_file() | 414 | * they should not affect remove_file()/copy_file() |
@@ -417,7 +418,7 @@ enum { /* cp.c, mv.c, install.c depend on these values. CAREFUL when changing th | |||
417 | #endif | 418 | #endif |
418 | FILEUTILS_IGNORE_CHMOD_ERR = 1 << 31, | 419 | FILEUTILS_IGNORE_CHMOD_ERR = 1 << 31, |
419 | }; | 420 | }; |
420 | #define FILEUTILS_CP_OPTSTR "pdRfilsLHarPvu" IF_SELINUX("c") | 421 | #define FILEUTILS_CP_OPTSTR "pdRfilsLHarPvuT" IF_SELINUX("c") |
421 | extern int remove_file(const char *path, int flags) FAST_FUNC; | 422 | extern int remove_file(const char *path, int flags) FAST_FUNC; |
422 | /* NB: without FILEUTILS_RECUR in flags, it will basically "cat" | 423 | /* NB: without FILEUTILS_RECUR in flags, it will basically "cat" |
423 | * the source, not copy (unless "source" is a directory). | 424 | * the source, not copy (unless "source" is a directory). |