aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Expand)Author
2021-07-04Teach tail -F to work on file that doesn't initially exist (neededRob Landley
2021-07-01tail: implement -F (and its companion -s).Elliott Hughes
2021-06-18Second attempt at making --help work with alias ls="ls --color"Rob Landley
2021-05-28xparsedate should ignore trailing + or - (does not change timezone)Rob Landley
2021-05-28Teach xparsedate() to handle more whitespace.Rob Landley
2021-05-15Convert utf8towc from wchar_t to unsigned (to match wctoutf8).Rob Landley
2021-05-15Clear errno in loop.Rob Landley
2021-05-02Add OpenBSD supportElla-0
2021-04-20hexedit: various improvements.Elliott Hughes
2021-04-08Fix typo in the xexec tweak.Rob Landley
2021-04-05Any / in string makes it a path, not just absolute path.Rob Landley
2021-03-13Elliott spotted that errno==EAGAIN usually goes with an rc of -1, not 0.Rob Landley
2021-02-23dd: simplify signal handling and fix status output.Elliott Hughes
2021-02-22Remove ifdefs from stat.Rob Landley
2021-02-20Fix df on macOS.Elliott Hughes
2021-02-08Have xclose() perform the fd != -1 test.Rob Landley
2021-02-08Yi-Yo Chiang pointed out install -D was broken when the target file exists.Rob Landley
2021-02-07Add lots of "static" annotations, make a couple things use FLAG() macros, etc.Rob Landley
2021-01-26Fix bug pointed out by asm89 and add test.Rob Landley
2021-01-15Cleanup base32 slightly.Rob Landley
2021-01-13Fix "date -I" segfault and teach lib/args.c that "I(opt):;" short opt withRob Landley
2021-01-07new toy: base32Moritz Röhrich
2021-01-06main.c: construct a combination locale to add UTF-8.Elliott Hughes
2021-01-01Fix comma regression reported by Denys Nykula.Rob Landley
2020-12-18Andy Hu wants mount -tnomsdos,smbfs to work.Rob Landley
2020-12-14Follow RFC1952 when consuming gzip headerPuck Meerburg
2020-12-11The "fall back to C.UTF-8" check was backwards, and make TOYFLAG_LINEBUFRob Landley
2020-12-06unicode: new toy.Elliott Hughes
2020-12-06Remove CONFIG_TOYBOX_I18N and just always support utf8.Rob Landley
2020-12-05Small cleanup.Rob Landley
2020-12-04chmod: support complex modes.Elliott Hughes
2020-11-18Fix microcom to set serial device's terminal correctly.Rob Landley
2020-11-17That last sh.c change had a lib/ change I forgot to check in.Rob Landley
2020-11-14Allow 0 prefix to optstr to include argv[0] in optargs[0].Rob Landley
2020-11-07xregcomp: add the specific regex we couldn't parse to the error message.Elliott Hughes
2020-11-06portability.h: ensure _FILE_OFFSET_BITS=64 takes effect.Elliott Hughes
2020-10-29Make it easier to switch regex implementations.Elliott Hughes
2020-10-28Tweak help text again.Rob Landley
2020-10-22Fix thinko.Rob Landley
2020-10-22Add nommu-able xvdaemon() and use it to remove some TOYBOX_FORK dependenciesRob Landley
2020-10-15Three trivial code cleanups and a comment tweak.Rob Landley
2020-10-15Nitpicky cleanup.Rob Landley
2020-10-15dirtree_path: always honor size request.Elliott Hughes
2020-10-12Fix bug introduced last commit: the if (name) else case needs to zero it.Rob Landley
2020-10-11toysh: more variable/wildcard plumbing and tests.Rob Landley
2020-10-06The non-recursive dirtree_path wasn't stripping a trailing / from initial path.Rob Landley
2020-10-03Return empty string for dirtree_path() of "" (instead of NULL).Rob Landley
2020-10-03Non-recursive dirtree_path() needs to return start of allocationRob Landley
2020-09-26Teach dirtree that top level "" node is "." but not show in dirtree_path().Rob Landley
2020-09-23Have read_password() read from tty device, handle ctrl-c and ctrl-d.Rob Landley