awk: optionally support -e AWK_PROG
[oweals/busybox.git] / editors / Config.src
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 menu "Editors"
7
8 INSERT
9
10 config CMP
11         bool "cmp"
12         default y
13         help
14           cmp is used to compare two files and returns the result
15           to standard output.
16
17 config DIFF
18         bool "diff"
19         default y
20         help
21           diff compares two files or directories and outputs the
22           differences between them in a form that can be given to
23           the patch command.
24
25 config FEATURE_DIFF_LONG_OPTIONS
26         bool "Enable long options"
27         default y
28         depends on DIFF && LONG_OPTS
29         help
30           Enable use of long options.
31
32 config FEATURE_DIFF_DIR
33         bool "Enable directory support"
34         default y
35         depends on DIFF
36         help
37           This option enables support for directory and subdirectory
38           comparison.
39
40 config ED
41         bool "ed"
42         default y
43         help
44           The original 1970's Unix text editor, from the days of teletypes.
45           Small, simple, evil. Part of SUSv3. If you're not already using
46           this, you don't need it.
47
48 config SED
49         bool "sed"
50         default y
51         help
52           sed is used to perform text transformations on a file
53           or input from a pipeline.
54
55 config FEATURE_ALLOW_EXEC
56         bool "Allow vi and awk to execute shell commands"
57         default y
58         depends on VI || AWK
59         help
60           Enables vi and awk features which allows user to execute
61           shell commands (using system() C call).
62
63 endmenu