diff options
Diffstat (limited to 'toys/Config.in')
-rw-r--r-- | toys/Config.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/toys/Config.in b/toys/Config.in index d9b1da10..89481bde 100644 --- a/toys/Config.in +++ b/toys/Config.in @@ -28,6 +28,12 @@ config DF_PEDANTIC -k Sets units back to 1024 bytes (the default without -P) +config HELLO + bool "hello" + default n + help + A hello world program. You don't need this. + config TOYSH bool "sh (toysh)" default n @@ -146,5 +152,15 @@ config TOYSH_BUILTINS Adds the commands exec, fg, bg, help, jobs, pwd, export, source, set, unset, read, alias. +config WHICH + bool "Which" + default n + help + usage: which [-a] filename ... + + Search $PATH for executable files matching filename(s). + + -a Show all matches + endmenu |