aboutsummaryrefslogtreecommitdiff
path: root/coreutils
AgeCommit message (Collapse)Author
2002-07-03Little fix to avoid overflowEric Andersen
2002-06-23Remove advertising clauses in accordance withAaron Lehmann
ftp://ftp.cs.berkeley.edu/ucb/4bsd/README.Impt.License.Change
2002-06-15Fix a potential macro expansion problem... isspace can beEric Andersen
a macro causing a double decrement...
2002-06-15Don't use pointless GNU-ismsEric Andersen
2002-06-06last_patch41 from vodz to fix stty -F and similarEric Andersen
2002-05-29Include busybox.h before testing CONFIG_LOCALE_SUPPORT.Manuel Novoa III
2002-05-27Added include for isdigit(); simplified -<num> detectionRobert Griebl
2002-05-17SUpport old style -[::digit::] options for head and tailRobert Griebl
Also make head behave like GNU head (-0/-n 0 is valid)
2002-05-01fix and shrink uuencodeTim Riker
2002-04-27Fix silly combinitorial oversightEric Andersen
2002-04-27Support noerror optionEric Andersen
2002-04-26Add the who applet, supplied by Da Chen <dchen@ayrnetworks.com>Eric Andersen
2002-04-17ls could mis-color certain entries when previous commandsEric Andersen
had failed. Explicitly 0 out errno to prevent that.
2002-04-13Update some missing copyright noticesEric Andersen
2002-04-06Patch from Edward Betts <edward@debian.org> to add -x switch to du.cEric Andersen
2002-04-06Apply lash_patch35 from vodz, which brings several nice size_optimizations.Eric Andersen
2002-03-25Work around compiler/assembler problem and reduce code size at the same time.Manuel Novoa III
2002-03-20Eliminate extra trailing spaceEric Andersen
2002-03-20Patch from J.W.Janssen <JanWillem.Janssen@lxtreme.nl> to provideEric Andersen
color ls support, modifed by me to behave properly when not running output to a terminal (i.e. 'ls | more') -Erik
2002-03-08list_single: Declare scratch iff CONFIG_FEATURE_LS_USERNAME is defined.Matt Kraai
2002-03-08* fileutils/ls.c (showfiles): Display multiple short names on a line.Matt Kraai
2002-02-05* fileutils/dd.c (dd_main): Ignore ftruncate error if the output is not aMatt Kraai
file or directory.
2001-12-20Remove `== TRUE' tests and convert `!= TRUE' and `== FALSE' tests to use !.Matt Kraai
2001-12-20Avoid printing a trailing blank character.Matt Kraai
2001-12-17Make cp and mv optionally preserve hard links.Matt Kraai
2001-12-11Use an int to hold the result of fgetc (bug noted by David Kimdon).Matt Kraai
2001-12-07Continue processing files if we are asked to touch, but not create, a fileMatt Kraai
which doesn't exist.
2001-12-07Update copyright and close file descriptors (noted by Axel Kittenberger).Matt Kraai
2001-12-06Merge in the cal applet from Steve Merrifield <steve@labyrinth.net.au>Eric Andersen
2001-12-05Combined size reduction changes by Glenn and myself. Added back in "unknown"Manuel Novoa III
for -p to match normal uname behavior (at a cost of 30-40 bytes).
2001-11-21Minor space saving improvmentsGlenn L McGrath
2001-11-21When just counting chars of a file stat file instead of reading the whole ↵Glenn L McGrath
file (Fixes Debian bug #103302)
2001-11-21woops. dotn pass NULLGlenn L McGrath
2001-11-21Simplify print function, prints an extra space if no filename, but saves 4 bytesGlenn L McGrath
2001-11-21Use enums for selected functionality, Reduce the size by nearly 100 BytesGlenn L McGrath
2001-11-17David Kimdon <dwhedon@instant802.com> noticed a thinkoEric Andersen
in md5sum where only binary sums were verified. He also sent in this patch, -Erik
2001-11-02Introduce od and hexdump appletsGlenn L McGrath
2001-10-31Fixup some silly prototype warningsEric Andersen
2001-10-24Split true and false into separate applets.Matt Kraai
2001-10-24Fixup the location of pwd.h and grp.hEric Andersen
2001-10-24Major rework of the directory structure and the entire build system.Eric Andersen
-Erik
2001-10-18Scrub up some function prototypes.Eric Andersen
-Erik
2001-10-05Use wfopen instead of fopen & error_msg, saves 64 bytesGlenn L McGrath
2001-10-05Invert FILEUTILS_PRESERVE_SYMLINKS into FILEUTILS_DEREFERENCE.Matt Kraai
2001-08-29Add -p support.Matt Kraai
2001-08-29SUSv2 specifies that if the extension is identical to the basename, itMatt Kraai
should not be removed.
2001-08-22Scrub things and ditch uint64_t and use a custom type nameEric Andersen
to avoid C lib compatibility problems.
2001-08-21Fix dos2unix compile problem with certain glibc versionsEric Andersen
2001-08-09Remove BB_SH define entirely.Matt Kraai
2001-08-06Use ferror(3) to check for errors, rather than inspecting errno. Thanks toMatt Kraai
David Douthitt for reporting, and shame on me for writing such crappy code.