summaryrefslogtreecommitdiff
path: root/coreutils/env.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* As vodz pointed out, setting unset_env to NULL is sufficientEric Andersen2003-11-071-5/+1
|
* Set unset_env pointing to a NULL item, to prevent us from walkingEric Andersen2003-11-031-1/+5
| | | | | off the end of the list and segfaulting. -Erik
* last_patch98 from vodz:Eric Andersen2003-07-281-12/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Denis, ># ./busybox env - echo zzz >zzz ># ./busybox echo -n zzz >zzz ># ./busybox env - echo -n zzz >env: invalid option -- n > > obviously, env tried to understand -n as env's option > instead of blindly passing it to echo... > >BusyBox v1.00-pre1 (2003.07.16-07:53+0000) multi-call binary > >Usage: env [-iu] [-] [name=value]... [command] Ah, you found very old problem. Last patch also have: - multiple "-u unsetenv" support - GNU long option support - save errno after exec failed before bb_perror_msg() --w vodz
* Update a bunch of docs. Run a script to update my email addr.Eric Andersen2003-07-141-1/+1
|
* last_patch89 from vodz:Eric Andersen2003-06-201-12/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Manuel, I rewrite bb_getopt_ulflags() function for more universal usage. My version support now: - options with arguments (optional arg as GNU extension also) - complementaly and/or incomplementaly and/or incongruously and/or list options - long_opt (all applets may have long option, add supporting is trivial) This realisation full compatibile from your version. Code size grow 480 bytes, but only coreutils/* over compensate this size after using new function. Last patch reduced over 800 bytes and not full applied to all. "mkdir" and "mv" applets have long_opt now for demonstrate trivial addition support long_opt with usage new bb_getopt_ulflags(). Complementaly and/or incomplementaly and/or incongruously and/or list options logic is not trivial, but new "cut" and "grep" applets using this logic for examples with full demostrating. New "grep" applet reduced over 300 bytes. Mark, Also. I removed bug from "grep" applet. $ echo a b | busybox grep -e a b a b a b But right is printing one only. --w vodz
* Major coreutils update.Manuel Novoa III2003-03-191-18/+34
|
* Change 'printf("%s\n", ...)' into 'puts(...)'. Noted and patched in hostname.cMatt Kraai2001-05-161-1/+1
| | | | by Larry Doolittle.
* Check that putenv succeeded, suggested by Jonas Holmberg.Matt Kraai2001-05-111-1/+2
|
* Fix handling of '-' option and way that variables are added to theMatt Kraai2001-05-111-6/+14
| | | | | environment from Jonas Holmberg <jonas.holmberg@axis.com>. Fix handling of command options by adding + to getopt string.
* Add in a new standalone env applet for fixing up app's environmentsEric Andersen2001-03-291-0/+97
-Erik