diff options
author | Rob Landley | 2005-10-28 13:05:12 +0000 |
---|---|---|
committer | Rob Landley | 2005-10-28 13:05:12 +0000 |
commit | aa87276bed8df4cdcd443f102b58d95c26be9c6d (patch) | |
tree | 4592b8c6be22d6bac7182f8b3304b3df56ca85f0 /include/usage.h | |
parent | 30c7de068b50de999b0b73a22e859dd2e9c23204 (diff) | |
download | busybox-aa87276bed8df4cdcd443f102b58d95c26be9c6d.zip busybox-aa87276bed8df4cdcd443f102b58d95c26be9c6d.tar.gz |
New applet, fuser, from Tony J. White. (Needs some cleanup.)
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index 69c50b9..79a61d2 100644 --- a/include/usage.h +++ b/include/usage.h @@ -841,6 +841,16 @@ "\t-p, --password Password to be used\n" \ "\t-P, --port Port number to be used" +#define fuser_trivial_usage \ + "[options] file OR port/proto" +#define fuser_full_usage \ + "Options:\n" \ + "\t-m Show all processes on the same mounted fs\n" \ + "\t-k Kill all processes that match.\n" \ + "\t-s Don't print or kill anything.\n" \ + "\t-4 When using port/proto only search IPv4 space\n" \ + "\t-6 When using port/proto only search IPv6 space\n" \ + "\t-SIGNAL When used with -k, this signal will be used to kill\n" #define getopt_trivial_usage \ "[OPTIONS]..." #define getopt_full_usage \ |