aboutsummaryrefslogtreecommitdiff
path: root/coreutils/dos2unix.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2000-11-14Brand new version of xargs. Tested thoroughly by Kent Robotti. (Domo arigato,Mark Whitley2-224/+122
Mr. Robotti...) Closes bug #1065.
2000-11-14Grammer fix. Changed "longer then" to "longer than". Fix thanks to JimEric Andersen3-10/+10
Gleason <jimg@lineo.com>.
2000-11-14Patch from Gennady Feldman <gfeldman@tradeline.net> to:Eric Andersen3-69/+102
1. Opens redirections w/ the right access. 2. Doesn't do globbing for every single parameter (so it doesn't stat every parameter).
2000-11-14Ulp. "expr" listed as a second "echo" (oops) -- thanks to David DouthittEric Andersen1-2/+2
for noticing....
2000-11-14Add in ZdiskEric Andersen1-0/+1
2000-11-14Remove unneeded junkEric Andersen2-8/+0
2000-11-08Move flush_outbuf to the file in which it is used, and by doing so fix aMatt Kraai4-30/+28
nasty error dealing with two different variables with the same name.
2000-11-08Fix some bugs reported by Jim Gleason <jimg@lineo.com> and others IMatt Kraai2-48/+30
introduced.
2000-11-07Cleanup of duplicated symbols -- found by compiling withEric Andersen8-104/+74
LDFLAGS += -Wl,-warn-common
2000-11-03Removed REG_NEWLINE from regcomp to fix the same bug found in grep where itMark Whitley2-2/+2
would not match blank lines (bug #1064). Followed Matt Kraii's suit on his 1.42 revision of grep. Tested it, works.
2000-11-03Now, what was that logic block doing up there?Mark Whitley2-12/+12
2000-11-03Re-worked the support for s///p, fixed a backref limit buglet, and cleaned upMark Whitley4-148/+172
a few other ugly places (do_subst_command got a much-needed overhaul). Also took out BB_FEATURE_SED_PATTERN_SPACE from Config.h[.Hurd] as the 'p' is now a standard feature (adds almost no bloat).
2000-11-02Warning cleanup from Gennady FeldmanEric Andersen2-18/+20
-Erik
2000-10-30Fix uname problem that was breaking poweroff.Eric Andersen6-65/+19
2000-10-29This was redundantEric Andersen2-2/+0
2000-10-28Make fbset compile with the readmode feature by pulling defs from fb.h.Matt Kraai2-0/+18
2000-10-28Make features independent.Matt Kraai2-10/+42
2000-10-28We also need to declare info if the USERNAMES feature is enabled.Matt Kraai2-4/+8
2000-10-27Add in -lgcc to add needed symbold when linking vs uclibc.Eric Andersen1-2/+2
2000-10-27Oops. I never committed this. Update version to 0.48pre...Eric Andersen4-3/+9
2000-10-26Silence a warning,Eric Andersen2-2/+2
2000-10-26This was broken when applets moved to applets.h. Fix it.Eric Andersen2-2/+2
2000-10-25Fixed error handling and TRUE/FALSE usage.Matt Kraai2-6/+4
2000-10-25Restore --help handling I mistakenly removed.Matt Kraai2-2/+8
2000-10-25Avoid reinventing the wheel (and thus save some space).Matt Kraai2-52/+26
2000-10-25Added a new perrorMsg function, cleanup up error handling, fixed TRUE/FALSEMatt Kraai5-90/+66
uses, and other minor fixes.
2000-10-25Cleaned up error handling, TRUE/FALSE usage, and other minor issues.Matt Kraai2-46/+26
2000-10-25Clean up error handling and uses of TRUE/FALSE.Matt Kraai2-28/+16
2000-10-25Cleaned up error handling and uses of TRUE/FALSE.Matt Kraai2-6/+4
2000-10-25Cleaned up error message handling.Matt Kraai2-32/+32
2000-10-25Added a fatalPerror function to simplify error handling.Matt Kraai5-8/+23
2000-10-25Fix for bug #1068 from Kent RobottiGlenn L McGrath2-4/+8
Call perror and exit instead of fatalError
2000-10-25Applied patch from Gaute B Strokkenes <gs234@cam.ac.uk> to use a binary searchMark Whitley4-732/+804
to locate applets, rather than a linear search. Also, broke out the listing of applets into it's own file: applets.h.
2000-10-23Fix error messages.Matt Kraai8-46/+46
2000-10-23Fix error message.Matt Kraai2-6/+6
2000-10-19Put getopt_usage where it belongs and added *_usage entries in busybox.[ch]Mark Whitley8-36/+44
2000-10-19Piss people off by removing [+-][0-9]+ options from tail.Matt Kraai4-48/+6
2000-10-16Remove broken error test found by Bryan Rittmeyer <bryan@ixiacom.com>.Matt Kraai1-5/+0
2000-10-13Fix handling of ^$ by removing the newline from input lines and by notMatt Kraai2-4/+8
compiling with REG_NEWLINE.
2000-10-13Consolidate stat(2) and lstat(2) calls and error handling.Matt Kraai2-68/+50
2000-10-13Exit with failure status if we are unable to list any files orMatt Kraai2-2/+16
directories. Patch thanks to Kent Robotti <robotti@metconnect.com>.
2000-10-12Apply a patch from Matt Kraai to fix buffer overrun and convert toEric Andersen2-38/+30
using synamically allocated storage. -Erik
2000-10-12Apply patch from "Orion Poplawski" <OPoplawski@cqg.com> to makeEric Andersen6-10/+22
hostname do "--file" -Erik
2000-10-09Added cmp and readlink applets from Matt Kraai.Mark Whitley11-2/+286
2000-10-09Patch from Matt Kraai so wc will return a proper error codeEric Andersen3-9/+13
when failing to open a file, and will not use file when it didn't open the file. -Erik
2000-10-09Fix a thinko. Patch from Justus Pendleton <justus@acm.org>Eric Andersen2-2/+2
2000-10-09Apply a patch from Matt Kraai:Eric Andersen2-2/+22
"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 Andersen2-4/+6
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 McGrath2-166/+138
(fs_link) does the actual work.
2000-10-03Add a spiffy progress meter.Eric Andersen3-42/+463
-Erik