aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2016-10-26 23:52:55 -0500
committerRob Landley <rob@landley.net>2016-10-26 23:52:55 -0500
commit10e9abcb88be40b1382fca3d9010e46d4594996c (patch)
tree497e73ba53a41cde048d0f490934e0d7ecef693a
parent31c519dcd7fba4291adfdb9f0d273929cdab7eb4 (diff)
downloadtoybox-10e9abcb88be40b1382fca3d9010e46d4594996c.tar.gz
Izabera pointed out that split -b -l are exclusive.
-rw-r--r--toys/posix/split.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/split.c b/toys/posix/split.c
index 075a4147..98d70c2a 100644
--- a/toys/posix/split.c
+++ b/toys/posix/split.c
@@ -8,7 +8,7 @@
* - should splitting an empty file produce an empty outfile? (Went with "no".)
* - permissions on output file
-USE_SPLIT(NEWTOY(split, ">2a#<1=2>9b#<1l#<1", TOYFLAG_USR|TOYFLAG_BIN))
+USE_SPLIT(NEWTOY(split, ">2a#<1=2>9b#<1l#<1[!bl]", TOYFLAG_USR|TOYFLAG_BIN))
config SPLIT
bool "split"