Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | 2004-03-15 | 1 | -8/+8 | |
| | ||||||
* | Try to make indent formatting less horrible | Eric Andersen | 2003-10-31 | 1 | -39/+37 | |
| | ||||||
* | Add a comment with link to the SUSv3 standard for xargs | Glenn L McGrath | 2003-10-30 | 1 | -0/+3 | |
| | ||||||
* | run through indent | Glenn L McGrath | 2003-10-30 | 1 | -387/+392 | |
| | ||||||
* | Vods versions of xargs | Glenn L McGrath | 2003-10-10 | 1 | -191/+510 | |
| | ||||||
* | Bugfix for xargs | Glenn L McGrath | 2003-10-09 | 1 | -58/+99 | |
| | ||||||
* | Add the x, n, s and E options, remove -r as its expected behaviour. | Glenn L McGrath | 2003-10-04 | 1 | -14/+115 | |
| | ||||||
* | Dont mix xarg options with utility option, fixes example of | Glenn L McGrath | 2003-10-03 | 1 | -11/+15 | |
| | | | | | | | `echo "README" | xargs ls -al` Dont specify a path for the default behaviour of echo args allocated space for an extra ptr Use defines for the different options | |||||
* | last_patch89 from vodz: | Eric Andersen | 2003-06-20 | 1 | -18/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 III | 2003-03-19 | 1 | -7/+5 | |
| | ||||||
* | Rewrite of xargs by Vladimir N. Oleynik | Glenn L McGrath | 2002-11-10 | 1 | -62/+84 | |
| | ||||||
* | last_patch55 from vodz: | Eric Andersen | 2002-09-16 | 1 | -18/+20 | |
| | | | | | | I found overflow problem in xargs applet (allocated not space for trailing '\0'). Last patch also reduce 22 bytes size. ;) | |||||
* | Fixed a bug in xarg: string data was strcat'ed to a malloc'ed buffer - and | Robert Griebl | 2002-08-03 | 1 | -8/+6 | |
| | | | | | malloc does not clear memory by default (somehow this worked on x86, but not on arm) | |||||
* | Call xmalloc before realloc | Eric Andersen | 2001-11-19 | 1 | -0/+1 | |
| | ||||||
* | Major rework of the directory structure and the entire build system. | Eric Andersen | 2001-10-24 | 1 | -4/+4 | |
| | | | | -Erik | |||||
* | xstrdup xargs cleanup from Jeff Garzik | Eric Andersen | 2001-03-23 | 1 | -1/+1 | |
| | ||||||
* | It turns out that DODMALLOC was broken when I reorganized busybox.h | Eric Andersen | 2001-02-20 | 1 | -1/+1 | |
| | | | | | | header file usage before the 0.49 release. To fix it, I had to move the '#include "busybox.h"' to the end of the list of #include files. -Erik | |||||
* | Fix wget error message and add (and use) chomp library function. | Matt Kraai | 2001-02-01 | 1 | -2/+1 | |
| | ||||||
* | Fix up copyright msgs. Bump version to 0.49 in preparation for0_49 | Eric Andersen | 2001-01-27 | 1 | -1/+1 | |
| | | | | | a release. Update the website with release details. -Erik | |||||
* | Changed email address to codepoet.org, updated list of applets / docs I | Mark Whitley | 2001-01-04 | 1 | -1/+1 | |
| | | | | maintain in AUTHORS. | |||||
* | Use busybox error handling functions wherever possible. | Matt Kraai | 2000-12-22 | 1 | -4/+2 | |
| | ||||||
* | Brand new version of xargs. Tested thoroughly by Kent Robotti. (Domo arigato, | Mark Whitley | 2000-11-14 | 1 | -112/+61 | |
| | | | | Mr. Robotti...) Closes bug #1065. | |||||
* | Yet more polish (thanks again to kent robotti for the bug reports). | Eric Andersen | 2000-09-26 | 1 | -10/+12 | |
| | | | | -Erik | |||||
* | Some more polish to make xargs act like GNU xargs (thanks to kent robotti | Eric Andersen | 2000-09-25 | 1 | -5/+6 | |
| | | | | | <robotti@metconnect.com> for testing and pointing out the differences) -Erik | |||||
* | Renamed "internal.h" to the more sensible "busybox.h". | Eric Andersen | 2000-09-25 | 1 | -1/+1 | |
| | | | | -Erik | |||||
* | Final (I think) version of xargs. Throw away all that tedious string | Eric Andersen | 2000-09-25 | 1 | -94/+62 | |
| | | | | | | scrubbing, and quit using system. Instead, use fork() and exec(), which yields and smaller, simpler, and cleaner design. -Erik | |||||
* | Be ever so pedantic about escaping chars that the shell might not like... | Eric Andersen | 2000-09-25 | 1 | -17/+59 | |
| | ||||||
* | Fix up xargs so that things like 'cat cat.c | xargs echo' will | Eric Andersen | 2000-09-24 | 1 | -6/+29 | |
| | | | | | work properly. -Erik | |||||
* | Fix xargs option parsing | Eric Andersen | 2000-09-24 | 1 | -13/+18 | |
| | ||||||
* | Fix memory problems, and make behavior correct. | Eric Andersen | 2000-09-23 | 1 | -5/+8 | |
| | ||||||
* | rewrite, so it should be firly clean now | Eric Andersen | 2000-09-23 | 1 | -98/+97 | |
| | ||||||
* | Use minix xargs instead, and update docs accordingly | Eric Andersen | 2000-09-22 | 1 | -913/+106 | |
| | | | | -Erik | |||||
* | Comment on xargs choice. | Eric Andersen | 2000-09-22 | 1 | -1/+2 | |
| | ||||||
* | Add in xargs | Eric Andersen | 2000-09-22 | 1 | -0/+922 | |