aboutsummaryrefslogtreecommitdiff
path: root/coreutils (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Improvements from Vladimir N. Oleynik.Matt Kraai2000-12-301-2/+2
|
* Use busybox error handling functions wherever possible.Matt Kraai2000-12-224-11/+7
|
* Turns out, md5sum was broken anyways. It uses backwards TRUE/FALSEEric Andersen2000-12-201-18/+14
| | | | | and wasnever updated when TRUE and FALSE were fixed. So kludge it by doing an #undef TRUE, then define it backwards...
* Fix a warning in sh.c. Remove use of getline() in md5sum sinceEric Andersen2000-12-201-12/+3
| | | | nobody else uses it and it is a GNU extension anyways...
* Rewrote.Matt Kraai2000-12-201-239/+37
|
* Rewrote dd.Matt Kraai2000-12-182-172/+119
|
* Change calls to error_msg.* and strerror to use perror_msg.*.Matt Kraai2000-12-189-22/+19
|
* Add missing newlines to error messages.Matt Kraai2000-12-182-5/+6
|
* Fix from Matt Kraai -- a better way to NULL terminate strings for theEric Andersen2000-12-134-14/+8
| | | | | my_* passwd and group routines. I should have thought of doing it this way...
* Patch from Matt Kraai to fix 'dirname /'Eric Andersen2000-12-121-5/+6
|
* du.c error msg cleanup from Kent RobottiEric Andersen2000-12-121-2/+2
|
* Patch from kent robotti to fix a buglet whereEric Andersen2000-12-111-3/+2
| | | | | | | # du doesn't_exist du: doesn't_exist: No such file or directory 0 doesn't_exist which was on course wrong. I simplified it a bit...
* Fix problem where 'du file_that_exists' doesn't work.Eric Andersen2000-12-091-2/+2
|
* Patch from Matt Kraai to implement uniq -[cdu]Eric Andersen2000-12-091-7/+38
|
* Changed names of functions in utility.c and all affected files, to makeMark Whitley2000-12-0727-114/+114
| | | | compliant with the style guide. Everybody rebuild your tags file!
* Get rid of redundant TRUE and FALSE definitions.Matt Kraai2000-12-071-7/+0
|
* Patch from Matt Kraai to fix 'echo "1 2 3" | tr -s " "'Eric Andersen2000-12-061-1/+1
| | | | so it properly outputs "1 2 3".
* Must compile before committing.Matt Kraai2000-12-061-2/+2
|
* Fix exit status on failure.Matt Kraai2000-12-062-15/+17
|
* Use perrorMsg instead of perror and keep removing files if we encounterMatt Kraai2000-12-051-5/+6
| | | | an error.
* Remove #ifdef __STDC__ junk. We don't do K&R round these parts,Eric Andersen2000-12-011-40/+0
| | | | so no point acting like we do.
* Stop using TRUE and FALSE for exit status.Matt Kraai2000-12-0127-53/+54
|
* Apply the BSD echo version submitted by Jonas Holmberg <jonas.holmberg@axis.com>Eric Andersen2000-11-291-29/+67
|
* Apply rev #2 of dd fix from Gennady Feldman.Eric Andersen2000-11-291-7/+21
|
* Apply a patch from Larry Doolittle <ldoolitt@recycle.lbl.gov> to closeEric Andersen2000-11-291-62/+46
| | | | | | 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.
* Patch from Matt Kraai to fix an infinate loop with ls -aREric Andersen2000-11-291-6/+32
|
* Fix behavior when removal fails.Matt Kraai2000-11-221-3/+5
|
* Fixed user and group name listing.Matt Kraai2000-11-181-22/+13
|
* Applied patch from Brent Priddy <brent.priddy@adtran.com> to handle theMark Whitley2000-11-171-24/+37
| | | | special-case of using newlines as field delimiters.
* "I will always compile before I commit."Eric Andersen2000-11-171-21/+30
| | | | | | "I will always compile before I commit." "I will always compile before I commit." -Erik
* Remove the BSD advertising clause, and replace it with a link to howEric Andersen2000-11-143-67/+76
| | | | the advertising clause has been retroactivly declared null and void.
* This was redundantEric Andersen2000-10-291-1/+0
|
* Make features independent.Matt Kraai2000-10-281-5/+21
|
* We also need to declare info if the USERNAMES feature is enabled.Matt Kraai2000-10-281-2/+4
|
* Fixed error handling and TRUE/FALSE usage.Matt Kraai2000-10-251-3/+2
|
* Cleaned up error handling and uses of TRUE/FALSE.Matt Kraai2000-10-251-3/+2
|
* Added a fatalPerror function to simplify error handling.Matt Kraai2000-10-251-4/+2
|
* Fix for bug #1068 from Kent RobottiGlenn L McGrath2000-10-251-2/+4
| | | | Call perror and exit instead of fatalError
* Fix error messages.Matt Kraai2000-10-231-3/+3
|
* Piss people off by removing [+-][0-9]+ options from tail.Matt Kraai2000-10-191-23/+3
|
* Consolidate stat(2) and lstat(2) calls and error handling.Matt Kraai2000-10-131-34/+25
|
* Exit with failure status if we are unable to list any files orMatt Kraai2000-10-131-1/+8
| | | | directories. Patch thanks to Kent Robotti <robotti@metconnect.com>.
* Apply a patch from Matt Kraai to fix buffer overrun and convert toEric Andersen2000-10-121-19/+15
| | | | | using synamically allocated storage. -Erik
* Added cmp and readlink applets from Matt Kraai.Mark Whitley2000-10-091-0/+65
|
* Patch from Matt Kraai so wc will return a proper error codeEric Andersen2000-10-091-4/+6
| | | | | | when failing to open a file, and will not use file when it didn't open the file. -Erik
* Apply a patch from Matt Kraai:Eric Andersen2000-10-091-1/+11
| | | | | | | "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
* Patch from Matt Kraai: "When it encounters a problem creating a link, lnEric Andersen2000-10-041-2/+3
| | | | | shouldn't give up entirely but instead continue processing the rest of its arguments. The attached patch does this."
* Rewrite to use getopt and return instead of exit, a seperate function ↵Glenn L McGrath2000-10-041-83/+69
| | | | (fs_link) does the actual work.
* + shortened main() a little, and a few aesthetic cleanups here & there.John Beppu2000-09-281-21/+19
|
* Rewrote head to perservere when it can't open a file, and share codeMatt Kraai2000-09-271-50/+43
| | | | with cat.