diff options
author | Eitan Adler <eadler@FreeBSD.org> | 2013-05-10 04:23:03 +0000 |
---|---|---|
committer | Eitan Adler <eadler@FreeBSD.org> | 2013-05-10 04:23:03 +0000 |
commit | 7f418e34078c7f45e389f96196376bb2e3360f24 (patch) | |
tree | 49532e4bf36e8fad3fea5bf09911abb4690151d4 /usr.bin/split/split.1 | |
parent | a274be7720ee1956b2f2775c6e02da400c2475a2 (diff) |
Implement 'split -d' which allows a numeric suffix instead of an
alphabetic one.
PR: bin/116209
Submitted by: Marcin Gryszkalis <mg@fork.pl> (adapted from)
Reviewed by: will
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=250432
Diffstat (limited to 'usr.bin/split/split.1')
-rw-r--r-- | usr.bin/split/split.1 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.bin/split/split.1 b/usr.bin/split/split.1 index 308b016dba9a..f6056bb8912c 100644 --- a/usr.bin/split/split.1 +++ b/usr.bin/split/split.1 @@ -36,10 +36,12 @@ .Nd split a file into pieces .Sh SYNOPSIS .Nm +.Fl d .Op Fl l Ar line_count .Op Fl a Ar suffix_length .Op Ar file Op Ar prefix .Nm +.Fl d .Fl b Ar byte_count Ns .Oo .Sm off @@ -49,10 +51,12 @@ .Op Fl a Ar suffix_length .Op Ar file Op Ar prefix .Nm +.Fl d .Fl n Ar chunk_count .Op Fl a Ar suffix_length .Op Ar file Op Ar prefix .Nm +.Fl d .Fl p Ar pattern .Op Fl a Ar suffix_length .Op Ar file Op Ar prefix @@ -108,6 +112,8 @@ or is appended to the number, the file is split into .Ar byte_count gigabyte pieces. +.It Fl d +Use a numeric suffix instead of a alphabetic suffix. .It Fl l Ar line_count Create split files .Ar line_count |