diff options
Diffstat (limited to 'editors/awk.c')
-rw-r--r-- | editors/awk.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/editors/awk.c b/editors/awk.c index e8e2c96f8..602a1d5e7 100644 --- a/editors/awk.c +++ b/editors/awk.c | |||
@@ -8,30 +8,30 @@ | |||
8 | */ | 8 | */ |
9 | 9 | ||
10 | //config:config AWK | 10 | //config:config AWK |
11 | //config: bool "awk" | 11 | //config: bool "awk (22 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: Awk is used as a pattern scanning and processing language. This is | 14 | //config: Awk is used as a pattern scanning and processing language. This is |
15 | //config: the BusyBox implementation of that programming language. | 15 | //config: the BusyBox implementation of that programming language. |
16 | //config: | 16 | //config: |
17 | //config:config FEATURE_AWK_LIBM | 17 | //config:config FEATURE_AWK_LIBM |
18 | //config: bool "Enable math functions (requires libm)" | 18 | //config: bool "Enable math functions (requires libm)" |
19 | //config: default y | 19 | //config: default y |
20 | //config: depends on AWK | 20 | //config: depends on AWK |
21 | //config: help | 21 | //config: help |
22 | //config: Enable math functions of the Awk programming language. | 22 | //config: Enable math functions of the Awk programming language. |
23 | //config: NOTE: This will require libm to be present for linking. | 23 | //config: NOTE: This requires libm to be present for linking. |
24 | //config: | 24 | //config: |
25 | //config:config FEATURE_AWK_GNU_EXTENSIONS | 25 | //config:config FEATURE_AWK_GNU_EXTENSIONS |
26 | //config: bool "Enable a few GNU extensions" | 26 | //config: bool "Enable a few GNU extensions" |
27 | //config: default y | 27 | //config: default y |
28 | //config: depends on AWK | 28 | //config: depends on AWK |
29 | //config: help | 29 | //config: help |
30 | //config: Enable a few features from gawk: | 30 | //config: Enable a few features from gawk: |
31 | //config: * command line option -e AWK_PROGRAM | 31 | //config: * command line option -e AWK_PROGRAM |
32 | //config: * simultaneous use of -f and -e on the command line. | 32 | //config: * simultaneous use of -f and -e on the command line. |
33 | //config: This enables the use of awk library files. | 33 | //config: This enables the use of awk library files. |
34 | //config: Ex: awk -f mylib.awk -e '{print myfunction($1);}' ... | 34 | //config: Example: awk -f mylib.awk -e '{print myfunction($1);}' ... |
35 | 35 | ||
36 | //applet:IF_AWK(APPLET_NOEXEC(awk, awk, BB_DIR_USR_BIN, BB_SUID_DROP, awk)) | 36 | //applet:IF_AWK(APPLET_NOEXEC(awk, awk, BB_DIR_USR_BIN, BB_SUID_DROP, awk)) |
37 | 37 | ||