diff options
author | Ron Yorston <rmy@pobox.com> | 2015-06-05 14:55:45 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2015-06-05 15:41:40 +0100 |
commit | 0ccf7a03aa45889993716581d675616db633ed33 (patch) | |
tree | bea4cc3a2d5e10575f60b60ff647daf06a433ebb /README.md | |
parent | 57e14f8704700ee39855698238d7e397e770332d (diff) | |
download | busybox-w32-0ccf7a03aa45889993716581d675616db633ed33.tar.gz busybox-w32-0ccf7a03aa45889993716581d675616db633ed33.tar.bz2 busybox-w32-0ccf7a03aa45889993716581d675616db633ed33.zip |
ash: add winxp option
In some circumstances Windows XP and Windows Server 2003 seem to dislike
environment variables with backslashes in paths.
The 'winxp' option prevents BusyBox from changing backslashes to slashes
in the environment. Although the option can be managed by the 'set'
builtin it only works if '-X' is given as the first argument to the shell.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -18,3 +18,4 @@ Then just `make`. | |||
18 | - Don't do wild things with Windows drive or UNC notation. | 18 | - Don't do wild things with Windows drive or UNC notation. |
19 | - Wildcard expansion is disabled by default, though it can be turned on at compile time. This only affects command line arguments to the binary: the BusyBox shell has full support for wildcards. | 19 | - Wildcard expansion is disabled by default, though it can be turned on at compile time. This only affects command line arguments to the binary: the BusyBox shell has full support for wildcards. |
20 | - Handling of users, groups and permissions is totally bogus. The system only admits to knowing about the current user and always returns the same hardcoded uid, gid and permission values. | 20 | - Handling of users, groups and permissions is totally bogus. The system only admits to knowing about the current user and always returns the same hardcoded uid, gid and permission values. |
21 | - Windows XP and Windows Server 2003 don't seem to like how busybox-w32 handles environment variables. The -X shell option (which must be the first argument) might help. | ||