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 | |
parent | 777706cb2352c02602842f89d916a0e18ce6bd91 (diff) | |
download | busybox-w32-de9e772f46eeba347c21014d4b159f28c2c2d9c1.tar.gz busybox-w32-de9e772f46eeba347c21014d4b159f28c2c2d9c1.tar.bz2 busybox-w32-de9e772f46eeba347c21014d4b159f28c2c2d9c1.zip |
flock: better help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-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 @@ | |||
1313 | "\n -v Verbose" \ | 1313 | "\n -v Verbose" \ |
1314 | 1314 | ||
1315 | #define flock_trivial_usage \ | 1315 | #define flock_trivial_usage \ |
1316 | "[-sxun] FD|FILE [[-c] PROG ARGS]" | 1316 | "[-sxun] FD|{FILE [-c] PROG ARGS}" |
1317 | #define flock_full_usage "\n\n" \ | 1317 | #define flock_full_usage "\n\n" \ |
1318 | "[Un]lock file descriptor or file, then run PROG\n" \ | 1318 | "[Un]lock file descriptor, or lock FILE and run PROG\n" \ |
1319 | "\nOptions:" \ | 1319 | "\nOptions:" \ |
1320 | "\n -s Shared lock" \ | 1320 | "\n -s Shared lock" \ |
1321 | "\n -x Exclusive lock (default)" \ | 1321 | "\n -x Exclusive lock (default)" \ |
1322 | "\n -u Remove a lock from FD" \ | 1322 | "\n -u Unlock FD" \ |
1323 | "\n -n Fail rather than wait" \ | 1323 | "\n -n Fail rather than wait" \ |
1324 | 1324 | ||
1325 | #define fold_trivial_usage \ | 1325 | #define fold_trivial_usage \ |