Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-10-09 | Added cmp and readlink applets from Matt Kraai. | Mark Whitley | |
2000-10-09 | Patch from Matt Kraai so wc will return a proper error code | Eric Andersen | |
when failing to open a file, and will not use file when it didn't open the file. -Erik | |||
2000-10-09 | Apply a patch from Matt Kraai: | Eric Andersen | |
"The -L option to ls doesn't behave correctly for files listed explicitly on the command line, only those in directories that are listed. The appended patch fixes this problem. Would someone please commit it?" -Erik | |||
2000-10-04 | Patch from Matt Kraai: "When it encounters a problem creating a link, ln | Eric Andersen | |
shouldn't give up entirely but instead continue processing the rest of its arguments. The attached patch does this." | |||
2000-10-04 | Rewrite to use getopt and return instead of exit, a seperate function ↵ | Glenn L McGrath | |
(fs_link) does the actual work. | |||
2000-09-28 | + shortened main() a little, and a few aesthetic cleanups here & there. | John Beppu | |
2000-09-27 | Rewrote head to perservere when it can't open a file, and share code | Matt Kraai | |
with cat. | |||
2000-09-27 | Continue concatenating files even if we can't open one. | Matt Kraai | |
2000-09-27 | Consolidate handling of some fopen failures. | Matt Kraai | |
2000-09-27 | Rewrote uniq to be less than a third of the size, and fixed some other | Matt Kraai | |
minor problems. | |||
2000-09-25 | Renamed "internal.h" to the more sensible "busybox.h". | Eric Andersen | |
-Erik | |||
2000-09-22 | Start the great EXIT_{SUCCESS,FAILURE} migration. | Matt Kraai | |
2000-09-22 | Add support for the -L option to ls. | Matt Kraai | |
2000-09-21 | Handle 'cat -' | Eric Andersen | |
2000-09-21 | Large file >2Gib support. | Eric Andersen | |
2000-09-20 | Only remove directories when removing recursively. | Matt Kraai | |
2000-09-20 | Added dos2unix, unix2dos, and unrpm.c thanks to robotti@metconnect.com. | Eric Andersen | |
-Erik | |||
2000-09-13 | Fix looping bug, use fullRead | Glenn L McGrath | |
2000-09-13 | Fix calls to {m,c,re}alloc so that they use x{m,c,re}alloc instead of | Matt Kraai | |
segfaulting or handling errors the same way themselves. | |||
2000-09-11 | dd now truncates files at the end its write, this can be turned of by | Glenn L McGrath | |
specifying conv=notrunc in the command line This conforms to GNU dd behaviour | |||
2000-09-10 | Remove some debugging code | Glenn L McGrath | |
2000-09-10 | Using seek=? used to cause part of the original file to be zero'ed, i | Glenn L McGrath | |
think this was caused by opening the file in truncate mode. | |||
2000-09-10 | My previous attempt to make dd use fullRead, fullWrite was very broken, | Glenn L McGrath | |
this should actually work. | |||
2000-09-07 | New ls sorting patch, as written by Sterling Huxley, and then updated | Eric Andersen | |
by kent robotti. I then updated it to use my_getpwuid and my_getgrgid (per busybox policy). -Erik | |||
2000-09-05 | Added expr, from Edward Betts <edward@debian.org>, with some fixups | Eric Andersen | |
and docs added by me. -Erik | |||
2000-08-28 | Rewritten by mistake. | Matt Kraai | |
2000-08-25 | ar.c now uses a linked list to process headers, uses getopt, new internal ↵ | Glenn L McGrath | |
function extractAr(srcFD, dstFd, filename) to make it easily accessable to other busybox functions. moved copySubFile from ar.c to utilities.c modified dd.c to use fullWrite modified copyFile in utilities.c to use copySubFile | |||
2000-08-22 | Fixed a warning about a label not being used | Pavel Roskin | |
2000-08-22 | Fixed misuse of type "char" | Pavel Roskin | |
2000-08-11 | Add optional ls file sorting, thanks to a patch from | Eric Andersen | |
Sterling Huxley <sterling@europa.com> -Erik | |||
2000-08-10 | Some #include updates. | Eric Andersen | |
-Erik | |||
2000-08-02 | Cleaner way to handle -NUM and +NUM, reduces the mem usage as well. | Eric Andersen | |
-Erik | |||
2000-08-02 | Minor cleanup thingy. fprintf(stderr, ...) -> errorMsg(). | Mark Whitley | |
2000-08-02 | Brand, new version of cut. This fixes the bugs in the old cut, is smaller, and | Mark Whitley | |
is a sight easier to understand than the Minix cut. | |||
2000-08-02 | Update to the tail rewrite by "Allen Soard" <esp-software@mail.hypermart.net> | Eric Andersen | |
-Erik | |||
2000-07-31 | Commit the rewrite of tail by Allen Soard | Eric Andersen | |
<esp-software@mail.hypermart.net>. Thanks Allen for you work at getting this into shape, -Erik | |||
2000-07-28 | Fixed to pass -Wundef | Pavel Roskin | |
2000-07-28 | Fix for a potential uninitialized variable, thx to | Eric Andersen | |
Ken Chalmers <chalmers@norscan.com> -Erik | |||
2000-07-28 | Some cleanups, based on a patch from Ken Chalmers | Eric Andersen | |
-Erik | |||
2000-07-26 | Fixed a syntax error & superfluous param decl that was causing the build to | Mark Whitley | |
fail. | |||
2000-07-26 | Fix some bitrot. | Eric Andersen | |
-Erik | |||
2000-07-25 | Use BB_FEATURE_CLEAN_UP where appropriate | Eric Andersen | |
-Erik | |||
2000-07-24 | chroot can now call the builtin shell | Pavel Roskin | |
2000-07-20 | Converted option parsing to using getopt(). Also managed to remove an | Mark Whitley | |
extraneous logic loop that existed only for the purpose of the special case of only one file. I replaced it with a variable to keep track of the number of files read. | |||
2000-07-20 | Whoops. Forgot to #include <getopt.h>. | Mark Whitley | |
2000-07-19 | Converted option parsing to getopt() and made some minor formatting changes. | Mark Whitley | |
2000-07-19 | Centralize handling of --help. | Matt Kraai | |
2000-07-19 | Add usage messages for applets without them. | Matt Kraai | |
2000-07-19 | Use FatalError() | Eric Andersen | |
-Erik | |||
2000-07-17 | Moved functions used by "lsmod" from cat.c to utility.c | Pavel Roskin | |
Adjusted to make lsmod and sh compilable as standalone apps. Comment fixes |