diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-20 00:07:11 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-20 00:07:11 +0100 |
commit | de9e772f46eeba347c21014d4b159f28c2c2d9c1 (patch) | |
tree | adedd16f08600155b569b4991e8176dc6bb86ba0 /include | |
parent | 777706cb2352c02602842f89d916a0e18ce6bd91 (diff) | |
download | busybox-de9e772f46eeba347c21014d4b159f28c2c2d9c1.tar.gz |
flock: better help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/usage.h b/include/usage.h index 0aea010c7..093efc8c4 100644 --- a/include/usage.h +++ b/include/usage.h @@ -1313,13 +1313,13 @@ "\n -v Verbose" \ #define flock_trivial_usage \ - "[-sxun] FD|FILE [[-c] PROG ARGS]" + "[-sxun] FD|{FILE [-c] PROG ARGS}" #define flock_full_usage "\n\n" \ - "[Un]lock file descriptor or file, then run PROG\n" \ + "[Un]lock file descriptor, or lock FILE and run PROG\n" \ "\nOptions:" \ "\n -s Shared lock" \ "\n -x Exclusive lock (default)" \ - "\n -u Remove a lock from FD" \ + "\n -u Unlock FD" \ "\n -n Fail rather than wait" \ #define fold_trivial_usage \ |