aboutsummaryrefslogtreecommitdiff
path: root/coreutils (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Continue concatenating files even if we can't open one.Matt Kraai2000-09-271-4/+5
|
* Consolidate handling of some fopen failures.Matt Kraai2000-09-271-6/+3
|
* Rewrote uniq to be less than a third of the size, and fixed some otherMatt Kraai2000-09-271-143/+17
| | | | minor problems.
* Renamed "internal.h" to the more sensible "busybox.h".Eric Andersen2000-09-2544-49/+49
| | | | -Erik
* Start the great EXIT_{SUCCESS,FAILURE} migration.Matt Kraai2000-09-221-3/+4
|
* Add support for the -L option to ls.Matt Kraai2000-09-221-0/+19
|
* Handle 'cat -'Eric Andersen2000-09-211-4/+3
|
* Large file >2Gib support.Eric Andersen2000-09-211-0/+8
|
* Only remove directories when removing recursively.Matt Kraai2000-09-201-0/+5
|
* Added dos2unix, unix2dos, and unrpm.c thanks to robotti@metconnect.com.Eric Andersen2000-09-201-0/+45
| | | | -Erik
* Fix looping bug, use fullReadGlenn L McGrath2000-09-131-2/+2
|
* Fix calls to {m,c,re}alloc so that they use x{m,c,re}alloc instead ofMatt Kraai2000-09-134-19/+11
| | | | segfaulting or handling errors the same way themselves.
* dd now truncates files at the end its write, this can be turned of byGlenn L McGrath2000-09-111-3/+10
| | | | | | specifying conv=notrunc in the command line This conforms to GNU dd behaviour
* Remove some debugging codeGlenn L McGrath2000-09-101-2/+1
|
* Using seek=? used to cause part of the original file to be zero'ed, iGlenn L McGrath2000-09-101-5/+4
| | | | think this was caused by opening the file in truncate mode.
* My previous attempt to make dd use fullRead, fullWrite was very broken,Glenn L McGrath2000-09-101-13/+14
| | | | this should actually work.
* New ls sorting patch, as written by Sterling Huxley, and then updatedEric Andersen2000-09-071-472/+642
| | | | | | by kent robotti. I then updated it to use my_getpwuid and my_getgrgid (per busybox policy). -Erik
* Added expr, from Edward Betts <edward@debian.org>, with some fixupsEric Andersen2000-09-052-1/+532
| | | | | and docs added by me. -Erik
* Rewritten by mistake.Matt Kraai2000-08-281-88/+32
|
* ar.c now uses a linked list to process headers, uses getopt, new internal ↵Glenn L McGrath2000-08-251-35/+6
| | | | | | | | | | 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
* Fixed a warning about a label not being usedPavel Roskin2000-08-221-4/+4
|
* Fixed misuse of type "char"Pavel Roskin2000-08-221-1/+1
|
* Add optional ls file sorting, thanks to a patch fromEric Andersen2000-08-111-0/+86
| | | | | Sterling Huxley <sterling@europa.com> -Erik
* Some #include updates.Eric Andersen2000-08-109-8/+1
| | | | -Erik
* Cleaner way to handle -NUM and +NUM, reduces the mem usage as well.Eric Andersen2000-08-021-24/+25
| | | | -Erik
* Minor cleanup thingy. fprintf(stderr, ...) -> errorMsg().Mark Whitley2000-08-021-2/+1
|
* Brand, new version of cut. This fixes the bugs in the old cut, is smaller, andMark Whitley2000-08-021-308/+171
| | | | is a sight easier to understand than the Minix cut.
* Update to the tail rewrite by "Allen Soard" <esp-software@mail.hypermart.net>Eric Andersen2000-08-021-74/+93
| | | | -Erik
* Commit the rewrite of tail by Allen SoardEric Andersen2000-07-311-1119/+245
| | | | | | <esp-software@mail.hypermart.net>. Thanks Allen for you work at getting this into shape, -Erik
* Fixed to pass -WundefPavel Roskin2000-07-281-1/+1
|
* Fix for a potential uninitialized variable, thx toEric Andersen2000-07-281-0/+1
| | | | | Ken Chalmers <chalmers@norscan.com> -Erik
* Some cleanups, based on a patch from Ken ChalmersEric Andersen2000-07-281-10/+13
| | | | -Erik
* Fixed a syntax error & superfluous param decl that was causing the build toMark Whitley2000-07-261-1/+1
| | | | fail.
* Fix some bitrot.Eric Andersen2000-07-261-7/+7
| | | | -Erik
* Use BB_FEATURE_CLEAN_UP where appropriateEric Andersen2000-07-251-1/+1
| | | | -Erik
* chroot can now call the builtin shellPavel Roskin2000-07-241-0/+5
|
* Converted option parsing to using getopt(). Also managed to remove anMark Whitley2000-07-201-17/+17
| | | | | | 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.
* Whoops. Forgot to #include <getopt.h>.Mark Whitley2000-07-201-0/+1
|
* Converted option parsing to getopt() and made some minor formatting changes.Mark Whitley2000-07-191-18/+21
|
* Centralize handling of --help.Matt Kraai2000-07-194-12/+0
|
* Add usage messages for applets without them.Matt Kraai2000-07-192-0/+6
|
* Use FatalError()Eric Andersen2000-07-191-4/+2
| | | | -Erik
* Moved functions used by "lsmod" from cat.c to utility.cPavel Roskin2000-07-171-15/+1
| | | | | Adjusted to make lsmod and sh compilable as standalone apps. Comment fixes
* The result of getopt() is "int" and should be treated as suchPavel Roskin2000-07-173-4/+4
|
* Extract usage information into a separate file.Matt Kraai2000-07-1640-471/+6
|
* Don't use strings directly in calls to usage(). This is in preparationMatt Kraai2000-07-147-57/+69
| | | | for their extraction to a separate file.
* Getopt'ed by Marc Nijdam <marc_nijdam@hp.com>Eric Andersen2000-07-142-52/+43
| | | | -Erik
* Getopt'rd by Marc Nijdam <marc_nijdam@hp.com>Eric Andersen2000-07-141-21/+11
| | | | -Erik
* More cleanups.Eric Andersen2000-07-143-18/+18
| | | | -Erik
* Fix argument parsing.Matt Kraai2000-07-141-1/+1
|