diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-12-06 23:47:38 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-12-06 23:47:38 +0000 |
commit | 7823d123232dee4434ab2fa1ba1c7730be06498b (patch) | |
tree | f8ef1a9e449b3a11b79a1a0d1f6286f9c0e9bb1c /sh.c | |
parent | e29a3c5d83d889887542a5d31fcf51d6d0b0ff02 (diff) | |
download | busybox-w32-7823d123232dee4434ab2fa1ba1c7730be06498b.tar.gz busybox-w32-7823d123232dee4434ab2fa1ba1c7730be06498b.tar.bz2 busybox-w32-7823d123232dee4434ab2fa1ba1c7730be06498b.zip |
Bettwr document the hidden internal sh.c #defines, and which folks
might want to use...
git-svn-id: svn://busybox.net/trunk/busybox@1390 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'sh.c')
-rw-r--r-- | sh.c | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -25,10 +25,18 @@ | |||
25 | * | 25 | * |
26 | */ | 26 | */ |
27 | 27 | ||
28 | 28 | // | |
29 | //This works pretty well now, and is not on by default. | ||
30 | #define BB_FEATURE_SH_ENVIRONMENT | ||
31 | // | ||
32 | //Backtick support has some problems, use at your own risk! | ||
29 | //#define BB_FEATURE_SH_BACKTICKS | 33 | //#define BB_FEATURE_SH_BACKTICKS |
34 | // | ||
35 | //If, then, else, etc. support is really, really broken. Don't even | ||
36 | //bother to mess with this yet, since you will not be happy with it. | ||
30 | //#define BB_FEATURE_SH_IF_EXPRESSIONS | 37 | //#define BB_FEATURE_SH_IF_EXPRESSIONS |
31 | #define BB_FEATURE_SH_ENVIRONMENT | 38 | // |
39 | //For debugging/development on the shell only... | ||
32 | //#define DEBUG_SHELL | 40 | //#define DEBUG_SHELL |
33 | 41 | ||
34 | 42 | ||