diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-09-15 17:03:48 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-09-15 17:03:48 +0000 |
commit | dbc5005814a66c3d06f50c280b1bb5a01e392022 (patch) | |
tree | 254a51ff50e97507a9dc8810b4cf014a2e825c88 /include/usage.h | |
parent | dff03fd36ee019a31063341b654ca14169e460b5 (diff) | |
download | busybox-w32-dbc5005814a66c3d06f50c280b1bb5a01e392022.tar.gz busybox-w32-dbc5005814a66c3d06f50c280b1bb5a01e392022.tar.bz2 busybox-w32-dbc5005814a66c3d06f50c280b1bb5a01e392022.zip |
Awk applet written from scratch by Dmitry Zakharov
git-svn-id: svn://busybox.net/trunk/busybox@5487 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index ffc3724be..12289ad5b 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -38,6 +38,14 @@ | |||
38 | "\t-x\t\textract\n" \ | 38 | "\t-x\t\textract\n" \ |
39 | "\t-v\t\tverbosely list files processed\n" | 39 | "\t-v\t\tverbosely list files processed\n" |
40 | 40 | ||
41 | #define awk_trivial_usage \ | ||
42 | "[-v var=val][-F sep] { -f progname | 'programtext' } [FILE ...]" | ||
43 | #define awk_full_usage \ | ||
44 | "Options:\n" \ | ||
45 | "\t-v var=val\tassign value 'val' to variable 'var'\n" \ | ||
46 | "\t-F sep\t\tuse 'sep' as field separator\n" \ | ||
47 | "\t-f progname\tread program source from file 'progname'\n" | ||
48 | |||
41 | #define basename_trivial_usage \ | 49 | #define basename_trivial_usage \ |
42 | "FILE [SUFFIX]" | 50 | "FILE [SUFFIX]" |
43 | #define basename_full_usage \ | 51 | #define basename_full_usage \ |