aboutsummaryrefslogtreecommitdiff
path: root/coreutils/expr.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2021-06-28 07:46:32 +0100
committerRon Yorston <rmy@pobox.com>2021-06-28 07:46:32 +0100
commite1ad66c0b8fd58a7158d40771175a7dab224202d (patch)
tree959d687eee9637151ad5798322586174de331141 /coreutils/expr.c
parent0fdf99bee07b6c38795eb5415b5e337ab82cfba8 (diff)
parent5dbbd0a6f52befe6bc57baf97d39168e595197f1 (diff)
downloadbusybox-w32-e1ad66c0b8fd58a7158d40771175a7dab224202d.tar.gz
busybox-w32-e1ad66c0b8fd58a7158d40771175a7dab224202d.tar.bz2
busybox-w32-e1ad66c0b8fd58a7158d40771175a7dab224202d.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'coreutils/expr.c')
-rw-r--r--coreutils/expr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/expr.c b/coreutils/expr.c
index c11505d13..b896acd44 100644
--- a/coreutils/expr.c
+++ b/coreutils/expr.c
@@ -45,7 +45,7 @@
45//usage:#define expr_trivial_usage 45//usage:#define expr_trivial_usage
46//usage: "EXPRESSION" 46//usage: "EXPRESSION"
47//usage:#define expr_full_usage "\n\n" 47//usage:#define expr_full_usage "\n\n"
48//usage: "Print the value of EXPRESSION to stdout\n" 48//usage: "Print the value of EXPRESSION\n"
49//usage: "\n" 49//usage: "\n"
50//usage: "EXPRESSION may be:\n" 50//usage: "EXPRESSION may be:\n"
51//usage: " ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" 51//usage: " ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n"
@@ -63,7 +63,7 @@
63//usage: " ARG1 % ARG2\n" 63//usage: " ARG1 % ARG2\n"
64//usage: " STRING : REGEXP Anchored pattern match of REGEXP in STRING\n" 64//usage: " STRING : REGEXP Anchored pattern match of REGEXP in STRING\n"
65//usage: " match STRING REGEXP Same as STRING : REGEXP\n" 65//usage: " match STRING REGEXP Same as STRING : REGEXP\n"
66//usage: " substr STRING POS LENGTH Substring of STRING, POS counted from 1\n" 66//usage: " substr STRING POS LEN Substring of STRING, POS counts from 1\n"
67//usage: " index STRING CHARS Index in STRING where any CHARS is found, or 0\n" 67//usage: " index STRING CHARS Index in STRING where any CHARS is found, or 0\n"
68//usage: " length STRING Length of STRING\n" 68//usage: " length STRING Length of STRING\n"
69//usage: " quote TOKEN Interpret TOKEN as a string, even if\n" 69//usage: " quote TOKEN Interpret TOKEN as a string, even if\n"