aboutsummaryrefslogtreecommitdiff
path: root/coreutils
AgeCommit message (Collapse)Author
2000-12-09Patch from Matt Kraai to implement uniq -[cdu]Eric Andersen
2000-12-07Changed names of functions in utility.c and all affected files, to makeMark Whitley
compliant with the style guide. Everybody rebuild your tags file!
2000-12-07Get rid of redundant TRUE and FALSE definitions.Matt Kraai
2000-12-06Patch from Matt Kraai to fix 'echo "1 2 3" | tr -s " "'Eric Andersen
so it properly outputs "1 2 3".
2000-12-06Must compile before committing.Matt Kraai
2000-12-06Fix exit status on failure.Matt Kraai
2000-12-05Use perrorMsg instead of perror and keep removing files if we encounterMatt Kraai
an error.
2000-12-01Remove #ifdef __STDC__ junk. We don't do K&R round these parts,Eric Andersen
so no point acting like we do.
2000-12-01Stop using TRUE and FALSE for exit status.Matt Kraai
2000-11-29Apply the BSD echo version submitted by Jonas Holmberg <jonas.holmberg@axis.com>Eric Andersen
2000-11-29Apply rev #2 of dd fix from Gennady Feldman.Eric Andersen
2000-11-29Apply a patch from Larry Doolittle <ldoolitt@recycle.lbl.gov> to closeEric Andersen
bug 1069. This shaves about 100 bytes from the executable, and about 200 bytes of heap usage. Also document the "-d" option in the usage message.
2000-11-29Patch from Matt Kraai to fix an infinate loop with ls -aREric Andersen
2000-11-22Fix behavior when removal fails.Matt Kraai
2000-11-18Fixed user and group name listing.Matt Kraai
2000-11-17Applied patch from Brent Priddy <brent.priddy@adtran.com> to handle theMark Whitley
special-case of using newlines as field delimiters.
2000-11-17"I will always compile before I commit."Eric Andersen
"I will always compile before I commit." "I will always compile before I commit." -Erik
2000-11-14Remove the BSD advertising clause, and replace it with a link to howEric Andersen
the advertising clause has been retroactivly declared null and void.
2000-10-29This was redundantEric Andersen
2000-10-28Make features independent.Matt Kraai
2000-10-28We also need to declare info if the USERNAMES feature is enabled.Matt Kraai
2000-10-25Fixed error handling and TRUE/FALSE usage.Matt Kraai
2000-10-25Cleaned up error handling and uses of TRUE/FALSE.Matt Kraai
2000-10-25Added a fatalPerror function to simplify error handling.Matt Kraai
2000-10-25Fix for bug #1068 from Kent RobottiGlenn L McGrath
Call perror and exit instead of fatalError
2000-10-23Fix error messages.Matt Kraai
2000-10-19Piss people off by removing [+-][0-9]+ options from tail.Matt Kraai
2000-10-13Consolidate stat(2) and lstat(2) calls and error handling.Matt Kraai
2000-10-13Exit with failure status if we are unable to list any files orMatt Kraai
directories. Patch thanks to Kent Robotti <robotti@metconnect.com>.
2000-10-12Apply a patch from Matt Kraai to fix buffer overrun and convert toEric Andersen
using synamically allocated storage. -Erik
2000-10-09Added cmp and readlink applets from Matt Kraai.Mark Whitley
2000-10-09Patch from Matt Kraai so wc will return a proper error codeEric Andersen
when failing to open a file, and will not use file when it didn't open the file. -Erik
2000-10-09Apply 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-04Patch from Matt Kraai: "When it encounters a problem creating a link, lnEric Andersen
shouldn't give up entirely but instead continue processing the rest of its arguments. The attached patch does this."
2000-10-04Rewrite 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-27Rewrote head to perservere when it can't open a file, and share codeMatt Kraai
with cat.
2000-09-27Continue concatenating files even if we can't open one.Matt Kraai
2000-09-27Consolidate handling of some fopen failures.Matt Kraai
2000-09-27Rewrote uniq to be less than a third of the size, and fixed some otherMatt Kraai
minor problems.
2000-09-25Renamed "internal.h" to the more sensible "busybox.h".Eric Andersen
-Erik
2000-09-22Start the great EXIT_{SUCCESS,FAILURE} migration.Matt Kraai
2000-09-22Add support for the -L option to ls.Matt Kraai
2000-09-21Handle 'cat -'Eric Andersen
2000-09-21Large file >2Gib support.Eric Andersen
2000-09-20Only remove directories when removing recursively.Matt Kraai
2000-09-20Added dos2unix, unix2dos, and unrpm.c thanks to robotti@metconnect.com.Eric Andersen
-Erik
2000-09-13Fix looping bug, use fullReadGlenn L McGrath
2000-09-13Fix calls to {m,c,re}alloc so that they use x{m,c,re}alloc instead ofMatt Kraai
segfaulting or handling errors the same way themselves.
2000-09-11dd now truncates files at the end its write, this can be turned of byGlenn L McGrath
specifying conv=notrunc in the command line This conforms to GNU dd behaviour