1. 1498c2f Basic ping support. by Rob Landley · 7 years ago
  2. 4577605 Switch xgettty() -> tty_fd() (returning -1 instead of erroring out if none). by Rob Landley · 7 years ago
  3. b432aee Move millitime() into lib.c. by Rob Landley · 7 years ago
  4. 359888a Cleanup logger.c, and move the facilitynames/prioritynames SYSLOG_NAMES by Rob Landley · 7 years ago
  5. 3ba0a28 xphung on github said: "config2help currently doesn't work on OS X, it by Rob Landley · 7 years ago
  6. 17bcad9 Redo namestopid to handle more cases. by Rob Landley · 7 years ago
  7. 9356adb killall should kill scripts too. by Elliott Hughes · 7 years ago
  8. 7ce9c2d Don't capitalize in the middle of a sentence. by Elliott Hughes · 7 years ago
  9. 46d2cda Tweak help_exit() to show "See %s --help" message on the same line. by Rob Landley · 7 years ago
  10. 3eb69d4 Complete rewrite of cut. Handle multipe ranges, add -DFO options, start by Rob Landley · 7 years ago
  11. b89af5e Fix xargs to obey POSIX's ARG_MAX restrictions. by Elliott Hughes · 7 years ago
  12. f900298 Last commit used xstrtod(), forgot to check it in. by Rob Landley · 7 years ago
  13. b3e7093 Tweak utf8towc() to return -1 earlier sometimes (instead of -2), and add test by Rob Landley · 7 years ago
  14. 6e76693 utf8towc() has to be in lib.c if strlower() is going to use it, because by Rob Landley · 7 years ago
  15. 67ddade In wc, replace mbrtowc() with new utf8towc() which doesn't have a context struct by Rob Landley · 7 years ago
  16. 92b6026 Split out xgetaddrinfo() from xconnect() by Rob Landley · 7 years ago
  17. 58fea0e comma_scan()'s clean option wasn't removing entry at end of list. by Rob Landley · 7 years ago
  18. a0e2e7d Make dd use atolx_range(), and teach atolx_range() about "w" suffix (word, *2). by Rob Landley · 7 years ago
  19. f30035e Most things seem to want the "b" suffix to mean 512 instead of 1. by Rob Landley · 7 years ago
  20. e1ee741 Add comment explaining strend() by Rob Landley · 7 years ago
  21. ab33097 Have help_exit() give a brief "See %s --help" message instead of the by Rob Landley · 7 years ago
  22. 12f0744 Add and use xmmap. by Elliott Hughes · 7 years ago
  23. 5a159cc Add minof/maxof macros that autodetect type. Make xzcat use them. by Rob Landley · 7 years ago
  24. f86f2f4 Cleaup chrt by Rob Landley · 7 years ago
  25. d74b562 Move strend() to lib/lib.c by Rob Landley · 7 years ago
  26. 71921dc Remove old uClibc compatibility glue. It's been 5 years since the last release. by Rob Landley · 7 years ago
  27. be3e318 Android NDK doesn't have cutils/sched_policy.h so add a probed config symbol. by Rob Landley · 7 years ago
  28. d3267c6 Now that just about everything has --help, don't output help for argument errors by Rob Landley · 8 years ago
  29. cb8e5ad Add TOYBOX_PEDANTIC_ARGS to check arguments when there are no arguments, by Rob Landley · 8 years ago
  30. fd56876 4a4b3d65644ce403b0f22887fc0d38b0202ec8c7 upset clang. by Elliott Hughes · 8 years ago
  31. 461b90c Fix dmesg -c and -C. by Elliott Hughes · 8 years ago
  32. 544669f Don't set SIGWINCH when reading ANSI size probe data, it causes a loop. by Rob Landley · 8 years ago
  33. 4a4b3d6 Silence a warning. by Rob Landley · 8 years ago
  34. ea9dd8a Posix says stdio.h should define 'stdout' as a macro, and bionic turns it into by Rob Landley · 8 years ago
  35. 938901d Switch oneit to use xopen_stdio() for -c (oops) and switch XVFORK() to use by Rob Landley · 8 years ago
  36. 87897b2 Fix padto in draw_trim_esc() so it behaves like printf %*.*s and matches the by Rob Landley · 8 years ago
  37. a1a559e Some lib fixes: mark xvfork() noinline, make xsendfile() return bytes copied, by Rob Landley · 8 years ago
  38. 4d4ca28 An option can't exclude itself, so "abc[-ab][!abc]" with "command -a -b" by Rob Landley · 8 years ago
  39. a975952 Add DIRTREE_PROC to skip non-numeric entries and make ps/top etc use it. by Rob Landley · 8 years ago
  40. 382057f Have dirtree_notdotdot() pass through !node->parent so . and .. on the command by Rob Landley · 8 years ago
  41. 817f059 Allow out and escout to be NULL in crunch_str() by Rob Landley · 8 years ago
  42. 4e867b8 Make netcat work with nommu and factor out poll() loop into net/net.c. by Rob Landley · 8 years ago
  43. 3366af7 sed -i run as root wasn't preserving ownership. by Rob Landley · 8 years ago
  44. eed9ed4 Replace loopfiles' failok with WARN_ONLY open flag. by Rob Landley · 8 years ago
  45. 7f7907f Export notstdio() wrapper. by Rob Landley · 8 years ago
  46. 299d438 Add openro() and WARN_ONLY flag so xopen() and friends can warn without exiting. by Rob Landley · 8 years ago
  47. 0c8a66e Switch help.c from #ifdef to if() by Rob Landley · 8 years ago
  48. 7528a96 Move genericish function to lib. by Rob Landley · 8 years ago
  49. 3d64b0c Change xgetpwnamid/xgetgrnamid to xgetuid/xgetgid returning the id number by Rob Landley · 8 years ago
  50. e98089a Add TOYFLAG_NOHELP to disable --help processing for individual commands, by Rob Landley · 8 years ago
  51. bc1ccac Move getusername/getgroupname to lib. (Return name or string representation by Rob Landley · 8 years ago
  52. 027a73a Make xopen() skip stdin/stdout/stderr, add xopen_stdio() if you want stdout, by Rob Landley · 8 years ago
  53. 145b702 Fix warning: 'XATTR_NAME_SMACK' macro redefined. by Elliott Hughes · 8 years ago
  54. f20b10e Move regexec0 into lib (regexec that takes length and matches after NUL). by Rob Landley · 8 years ago
  55. fff20ab Don't close stdin when loopfiles reads "-". by Rob Landley · 8 years ago
  56. 93e044c Bugfix: suffixless string was feeding terminating NUL to strchr() and matching. by Rob Landley · 8 years ago
  57. 30454a4 Convert atolx() and friends to use long long internally. Update design.html by Rob Landley · 8 years ago
  58. d5088a0 dd improvements. by Elliott Hughes · 8 years ago
  59. 0ed17f1 Now that we're using the adjusted option string, need to skip placeholders in [groups]. by Rob Landley · 8 years ago
  60. 480fb07 Use libbuf instead of stack buffer. by Rob Landley · 8 years ago
  61. 57dafe3 Last commit depends on new lib code I forgot to check in. (Oops.) by Rob Landley · 8 years ago
  62. 46409d5 Add readlink0() and readlinkat0() which null terminate the data. by Rob Landley · 8 years ago
  63. 9c3789a Stand alone builds of OLDTOY should show help text for corresponding NEWTOY. by Rob Landley · 8 years ago
  64. b602f1c Add bufgetgrgid() by Rob Landley · 8 years ago
  65. 6d50d4c Add bufgetpwuid. (Repeated calls to getpwuid() are really expensive.) by Rob Landley · 8 years ago
  66. 454eea5 Simplify ps android scheduling policy fetch slightly. by Rob Landley · 8 years ago
  67. e0dbc6b Add a ps "PCY" field for Android scheduling policy. by Elliott Hughes · 8 years ago
  68. 072ea41 Fix more to not append an extra newline. by Elliott Hughes · 8 years ago
  69. bb77dde Have dirtree_recurse() take the new dirfd as an argument. by Rob Landley · 8 years ago
  70. 00a60fc Fix "ssh top". by Elliott Hughes · 9 years ago
  71. cb49c30 Didn't check in all my local basename_r->getbasename changes. (Oops.) by Rob Landley · 9 years ago
  72. 1c028ca Redefining basename_r to mean something random seems popular (bionic and freebsd by Rob Landley · 9 years ago
  73. 9fcaca8 Fix build when wchar_t is unsigned. by Elliott Hughes · 9 years ago
  74. 0e05569 Fix exit code of things like sed -i that use tempfile_handler(). by Rob Landley · 9 years ago
  75. 2b999e6 Add ls -b and make ls -q work with utf8. by Rob Landley · 9 years ago
  76. eb24df9 Split out _xexit() from xexit() and give sigatexit() multiple callbacks. by Rob Landley · 9 years ago
  77. 2f7c98e The xattr functions were added during the 2.5 kernel, lsm.h can #include the by Rob Landley · 9 years ago
  78. 8d95074 Cleanup pass on the dirtree infrastructure, in preparation for making rm -r by Rob Landley · 9 years ago
  79. 7ca5dc4 For years the man pages have said to #include <sys/types.h> to get by Rob Landley · 9 years ago
  80. 5a44e4a The last-ever release of uClibc didn't #define MS_RELATIME. by Rob Landley · 9 years ago
  81. fd6c947 Typecast a printf argument because wchar_t isn't a rigidly defined size. by Rob Landley · 9 years ago
  82. 81f31e4 Implement "insmod -". by Elliott Hughes · 9 years ago
  83. 42cad12 RLIMIT_RTTIME was added to the kernel in 2008, you can't expect uClibc to have noticed yet. by Rob Landley · 9 years ago
  84. 9502a77 Implement file(1). by Elliott Hughes · 9 years ago
  85. df07fb7 Wean scripts/install.c off toys.h so cross compiling less brittle. by Rob Landley · 9 years ago
  86. 187649d Don't include toys.h from config2help.c (so cross-compiling from systems we by Rob Landley · 9 years ago
  87. f435f04 Factor out strnstr() since posix hasn't got it, and add a config option for by Rob Landley · 9 years ago
  88. 2f3f26e Add ulimit. by Rob Landley · 9 years ago
  89. a7a869c Fix xpipe. (thinko.) by Rob Landley · 9 years ago
  90. 85f54d8 Add xpipe() to lib. by Rob Landley · 9 years ago
  91. 4a13ca9 Add SIGWINCH support to top, and implement -o and -n in pgrep/pkill. by Rob Landley · 9 years ago
  92. 8f7137e Bugfix I forgot to checkin, plus a wrapper function. by Rob Landley · 9 years ago
  93. 3d950db Fix comma_args error reporting. by Elliott Hughes · 9 years ago
  94. cf0f037 Factor out insanitize() from seq.c to next_printf() in lib. by Rob Landley · 9 years ago
  95. 59781de First stab at making readfileat() realloc() in a loop to read long files. by Rob Landley · 9 years ago
  96. e9dce28 Another CFG_TOYBOX_DEBUG test. by Rob Landley · 9 years ago
  97. ba86864 Extend utf8 fontmetrics so ps can use them. by Rob Landley · 9 years ago
  98. 544c1ec Update draw_str() and friends to do standard escaping for ^X <AB> U+ABCD. by Rob Landley · 9 years ago
  99. 5493916 Move create_uuid() to lib and xpoll() to lib/net.c. by Rob Landley · 9 years ago
  100. c55d30d Fix hwclock -u. by Elliott Hughes · 9 years ago