Age | Commit message (Expand) | Author |
2017-12-22 | Redo namestopid to handle more cases. | Rob Landley |
2017-12-19 | killall should kill scripts too. | Elliott Hughes |
2017-12-03 | Don't capitalize in the middle of a sentence. | Elliott Hughes |
2017-10-10 | Tweak help_exit() to show "See %s --help" message on the same line. | Rob Landley |
2017-10-10 | Complete rewrite of cut. Handle multipe ranges, add -DFO options, start | Rob Landley |
2017-10-01 | Fix xargs to obey POSIX's ARG_MAX restrictions. | Elliott Hughes |
2017-09-09 | Last commit used xstrtod(), forgot to check it in. | Rob Landley |
2017-09-05 | Tweak utf8towc() to return -1 earlier sometimes (instead of -2), and add test | Rob Landley |
2017-09-02 | utf8towc() has to be in lib.c if strlower() is going to use it, because | Rob Landley |
2017-09-02 | In wc, replace mbrtowc() with new utf8towc() which doesn't have a context struct | Rob Landley |
2017-07-17 | Split out xgetaddrinfo() from xconnect() | Rob Landley |
2017-07-11 | comma_scan()'s clean option wasn't removing entry at end of list. | Rob Landley |
2017-07-07 | Make dd use atolx_range(), and teach atolx_range() about "w" suffix (word, *2). | Rob Landley |
2017-06-26 | Most things seem to want the "b" suffix to mean 512 instead of 1. | Rob Landley |
2017-06-06 | Add comment explaining strend() | Rob Landley |
2017-06-05 | Have help_exit() give a brief "See %s --help" message instead of the | Rob Landley |
2017-05-24 | Add and use xmmap. | Elliott Hughes |
2017-05-23 | Add minof/maxof macros that autodetect type. Make xzcat use them. | Rob Landley |
2017-05-21 | Cleaup chrt | Rob Landley |
2017-05-08 | Move strend() to lib/lib.c | Rob Landley |
2017-05-08 | Remove old uClibc compatibility glue. It's been 5 years since the last release. | Rob Landley |
2017-04-30 | Android NDK doesn't have cutils/sched_policy.h so add a probed config symbol. | Rob Landley |
2017-03-23 | Now that just about everything has --help, don't output help for argument errors | Rob Landley |
2017-03-20 | Add TOYBOX_PEDANTIC_ARGS to check arguments when there are no arguments, | Rob Landley |
2017-02-20 | 4a4b3d65644ce403b0f22887fc0d38b0202ec8c7 upset clang. | Elliott Hughes |
2017-02-20 | Fix dmesg -c and -C. | Elliott Hughes |
2017-02-05 | Don't set SIGWINCH when reading ANSI size probe data, it causes a loop. | Rob Landley |
2017-02-05 | Silence a warning. | Rob Landley |
2017-02-04 | Posix says stdio.h should define 'stdout' as a macro, and bionic turns it into | Rob Landley |
2017-02-04 | Switch oneit to use xopen_stdio() for -c (oops) and switch XVFORK() to use | Rob Landley |
2017-01-28 | Fix padto in draw_trim_esc() so it behaves like printf %*.*s and matches the | Rob Landley |
2017-01-04 | Some lib fixes: mark xvfork() noinline, make xsendfile() return bytes copied, | Rob Landley |
2017-01-04 | An option can't exclude itself, so "abc[-ab][!abc]" with "command -a -b" | Rob Landley |
2016-12-08 | Add DIRTREE_PROC to skip non-numeric entries and make ps/top etc use it. | Rob Landley |
2016-11-21 | Have dirtree_notdotdot() pass through !node->parent so . and .. on the command | Rob Landley |
2016-10-20 | Allow out and escout to be NULL in crunch_str() | Rob Landley |
2016-10-11 | Make netcat work with nommu and factor out poll() loop into net/net.c. | Rob Landley |
2016-09-30 | sed -i run as root wasn't preserving ownership. | Rob Landley |
2016-09-05 | Replace loopfiles' failok with WARN_ONLY open flag. | Rob Landley |
2016-09-05 | Export notstdio() wrapper. | Rob Landley |
2016-09-04 | Add openro() and WARN_ONLY flag so xopen() and friends can warn without exiting. | Rob Landley |
2016-09-04 | Switch help.c from #ifdef to if() | Rob Landley |
2016-09-03 | Move genericish function to lib. | Rob Landley |
2016-08-18 | Change xgetpwnamid/xgetgrnamid to xgetuid/xgetgid returning the id number | Rob Landley |
2016-08-13 | Add TOYFLAG_NOHELP to disable --help processing for individual commands, | Rob Landley |
2016-08-13 | Move getusername/getgroupname to lib. (Return name or string representation | Rob Landley |
2016-08-04 | Make xopen() skip stdin/stdout/stderr, add xopen_stdio() if you want stdout, | Rob Landley |
2016-08-02 | Fix warning: 'XATTR_NAME_SMACK' macro redefined. | Elliott Hughes |
2016-07-26 | Move regexec0 into lib (regexec that takes length and matches after NUL). | Rob Landley |
2016-07-15 | Don't close stdin when loopfiles reads "-". | Rob Landley |