diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-18 02:43:57 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-18 02:43:57 +0200 |
commit | 5fe2f863b9cee5ab0e7ac873538bce48846dbad8 (patch) | |
tree | 458909d5ff400323be81cdd88e5c7430656deffd /coreutils | |
parent | c05387d5deca9e57c38077debc0f705199f32006 (diff) | |
download | busybox-w32-5fe2f863b9cee5ab0e7ac873538bce48846dbad8.tar.gz busybox-w32-5fe2f863b9cee5ab0e7ac873538bce48846dbad8.tar.bz2 busybox-w32-5fe2f863b9cee5ab0e7ac873538bce48846dbad8.zip |
sort: -o FILE should create/truncate FILE
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/sort.c b/coreutils/sort.c index 716824321..eccc2d437 100644 --- a/coreutils/sort.c +++ b/coreutils/sort.c | |||
@@ -412,7 +412,7 @@ int sort_main(int argc UNUSED_PARAM, char **argv) | |||
412 | #if ENABLE_FEATURE_SORT_BIG | 412 | #if ENABLE_FEATURE_SORT_BIG |
413 | /* Open output file _after_ we read all input ones */ | 413 | /* Open output file _after_ we read all input ones */ |
414 | if (option_mask32 & FLAG_o) | 414 | if (option_mask32 & FLAG_o) |
415 | xmove_fd(xopen(str_o, O_WRONLY), STDOUT_FILENO); | 415 | xmove_fd(xopen(str_o, O_WRONLY|O_CREAT|O_TRUNC), STDOUT_FILENO); |
416 | #endif | 416 | #endif |
417 | flag = (option_mask32 & FLAG_z) ? '\0' : '\n'; | 417 | flag = (option_mask32 & FLAG_z) ? '\0' : '\n'; |
418 | for (i = 0; i < linecount; i++) | 418 | for (i = 0; i < linecount; i++) |