1. cc0d4ab Tighten up the code a bit, and use actual process group id instead of what /etc/passwd says. by Rob Landley · 12 years ago
  2. 2c48247 Redo tail to use optargs and optionally support lseek. Add support to optargs and llist.c, plus add a test suite entry. Still no -f support though. by Rob Landley · 12 years ago
  3. 9f4c1fd Fix nanosleep() usage. by Georgi Chorbadzhiyski · 12 years ago
  4. 28427d2 Replace deprecated libc function with its totally renamed equivalent. by Rob Landley · 13 years ago
  5. 35cb740 Work around glibc regression by including Linux header directly. by Rob Landley · 13 years ago
  6. b7529b6 More stabs at getting #includes right, and moving off of deprecated functions. by Rob Landley · 13 years ago
  7. 13cacbd Fix mkdir -p to accept paths that already exist, and detect path ending in a file. by Rob Landley · 13 years ago
  8. f05f660 Consolidate headers. by Rob Landley · 13 years ago
  9. b7a4862 Silence a couple pointless warnings. by Rob Landley · 13 years ago
  10. e430db2 Cleanups: use perror_msg() and make mode a global. by Rob Landley · 13 years ago
  11. f656fc9 Add mkfifo. by Georgi Chorbadzhiyski · 13 years ago
  12. 9317c06 Comment and whitespace tweaks. by Rob Landley · 13 years ago
  13. 688c745 mkdir cleanups: Let umask do its thing at the syscall level, have mode be a global to prepare for -m, use do_blah name loopfiles() usually calls, one less redundant mkdir() call, go ahead and modify writeable args instead of strdup(), return before restoring / so error message is better, use perror_msg(). by Rob Landley · 13 years ago
  14. 057aa04 Add mkdir. by Georgi Chorbadzhiyski · 13 years ago
  15. 4250d52 Fix xargs -0 option. by Rob Landley · 13 years ago
  16. e2aa5cb whoami: fix toy description, no code changes by Pere Orga · 13 years ago
  17. 4bb140e Add clear. by Rob Landley · 13 years ago
  18. a30a84a Add tac. (Shell wrapper is smaller, but all-in-one static binary is compelling use case.) by Rob Landley · 13 years ago
  19. fd374f9 Minor optimization. by Rob Landley · 13 years ago
  20. 0d20c93 Add whoami. by Georgi Chorbadzhiyski · 13 years ago
  21. 405e73c Add longopt, refactor so only one instance of each loop, requre = as part of match, update exit code. by Rob Landley · 13 years ago
  22. 2790105 Implement printenv command. by Georgi Chorbadzhiyski · 13 years ago
  23. 2b7b1ad Make floating point support depend on TOYBOX_FLOAT, make 0.1m work. by Rob Landley · 13 years ago
  24. f1e82df Add fraction and extension support to sleep. by Georgi Chorbadzhiyski · 13 years ago
  25. e8a9df4 Add -A to ls by Andre Renaud · 13 years ago
  26. ad065e2 This uses floating point. by Rob Landley · 13 years ago
  27. 52265e9 Add copyright notice, fluff out help text, use xexec(). by Rob Landley · 13 years ago
  28. 03a8f74 Only show one normal difference (sans -l) and EOF message should go to stdout, not stderr. by Rob Landley · 13 years ago
  29. 7339560 Cleanup pass, and support unrecognized slash chars ala "echo -e \p". by Rob Landley · 13 years ago
  30. 829503e Add -n, which kernel build needs. by Rob Landley · 13 years ago
  31. b73d8e3 Add "-" type to optargs and teach tail.c to use it. Tighten up help text, use xzalloc() and xputc() as appropriate. by Rob Landley · 13 years ago
  32. f793d53 Upgrade yesno() and make cp -i use it. by Rob Landley · 13 years ago
  33. b0dcd66 The aboriginal linux build needs ls -ditc and probably some more unimplemented options yet... by Rob Landley · 13 years ago
  34. d73c956 Teach patch -p that consecutive /// counts as one path component. by Rob Landley · 13 years ago
  35. b081ce9 Teach lib/args.c that " " this option must take a _separate_ argument, so "kill -stop" and "kill -s top" aren't the same thing. Make kill.c use it, and remove leftover debug printfs. by Rob Landley · 13 years ago
  36. 2dd50ad Factor out common code between killall/kill and move it to lib/lib.c, plus cleanups on kill.c. by Rob Landley · 13 years ago
  37. bef57ed Implemented -i for cp by Bryce Fricke · 13 years ago
  38. 2f53279 Bugfix: use the right USE symbol. by Rob Landley · 13 years ago
  39. 5059123 Add tail. by Timothy Elliott · 13 years ago
  40. 8206db5 update id to be SUS compliant by Daniel Walter · 13 years ago
  41. 94d673d Add in the -n support, and the 64-bit defines. Force ls to act as ls -1 if used in a pipe. by Andre Renaud · 13 years ago
  42. eb7204b Add new kill toy. Used to send signals to a process or a process group. by Daniel Walter · 13 years ago
  43. ed505e8 Adding insmod and rmmod by Elie De Brauwer · 13 years ago
  44. 2a566c2 Adding mknod by Elie De Brauwer · 13 years ago
  45. f1e2e1c Tighten up the source code in largely cosmetic ways. by Rob Landley · 13 years ago
  46. 5a7c16c Minor cleanups: lsmod should USE_LSMOD() instead of USE_FREE(), use consistent tab/space idents, and doesn't need a break after a function that exits. by Rob Landley · 13 years ago
  47. 9e59c27 Adding lsmod by Elie De Brauwer · 13 years ago
  48. 4c9ac8e Minor tweaks. by Rob Landley · 13 years ago
  49. 2c16281 Adding swapon and swapoff by Elie De Brauwer · 13 years ago
  50. a11a6cd mkswap helpstring and argument string by Elie De Brauwer · 13 years ago
  51. 2b54b1a Nathan McSween convinced me compilers that inline memset() can optimize the bzero case pretty well. by Rob Landley · 13 years ago
  52. 4696bfc Cleanups to killall. by Rob Landley · 13 years ago
  53. f42e11b Cleanups to pidof (including some global infrastructure shared with killall). by Rob Landley · 13 years ago
  54. 4797bc2 More ls updates from Andre Renaud: Add -R and initial support for listing files on the command line. by Rob Landley · 13 years ago
  55. ff9ee8f Add killall by Andreas Heck, and factor out common pid code to lib.h. by Rob Landley · 13 years ago
  56. 3c1104f Add pidof by Andreas Heck. by Rob Landley · 13 years ago
  57. b0f3037 Move realpath from loopfiles() to a for loop, so we don't get hung on read permission for file data when we just want to look at directory info. by Rob Landley · 13 years ago
  58. 60e817c Realpath, by Andre Renaud. by Rob Landley · 13 years ago
  59. 524a949 Move includes into toys.h, more xprintf() by Rob Landley · 13 years ago
  60. af125c3 Minor cleanups: trim spaces from strings, use xprintf(). by Rob Landley · 13 years ago
  61. cd9ca5f Adding free and uptime by Elie De Brauwer · 13 years ago
  62. f4d6ff9 Error message fix from Pere (gotrunks at gmail). by Rob Landley · 13 years ago
  63. 7bc392f Minor cleanups to hostname. by Rob Landley · 13 years ago
  64. b083b8c Add hostname from Andre Renaud. by Rob Landley · 13 years ago
  65. f67edb2 Teach ln about multiple arguments. by Rob Landley · 13 years ago
  66. 20d25e8 Add ln from Andre Renaud. by Rob Landley · 13 years ago
  67. b07a3d3 Tweak from Frank Bergmann: some broken optimizers complain about "type-punned pointers", so typecast to void * instead to shut it up. (Up there with the "may be used uninitialized" gripes.) by Rob Landley · 13 years ago
  68. da5aa3a Second drop of ls from Andre, adds -l. by Rob Landley · 13 years ago
  69. 3d8685b Add ls from Andre Renaud. by Rob Landley · 13 years ago
  70. 3e7c259 Minor code cleanup and typo fix. by Rob Landley · 13 years ago
  71. 528e3ba Add test for basename, fix issue where suffix is wrongfully applied if it appears in the middle of the filename by Elie De Brauwer · 13 years ago
  72. 270366f Add tests for head by Timothy Elliott · 13 years ago
  73. 365bda8 Minor cleanups to echo: collapse together three tolower() calls, make indent/brackets a bit more regular/obvious, and replace some spaces with tabs in help text (in a way that won't matter until I finish rewriting scripts/config2help.py in C). by Rob Landley · 13 years ago
  74. ef3e528 Fix overflow in octal formatting in echo, add support for hexadecimal input, add tests for octal and hexadecimal formatting by Elie De Brauwer · 13 years ago
  75. 2f9b215 Correct cksum parameters and clarify -N option by Elie De Brauwer · 13 years ago
  76. dc44e70 Correct description of nice levels in help of nice by Elie De Brauwer · 13 years ago
  77. 0d3961f Cleanups for head. by Rob Landley · 13 years ago
  78. 41a2130 Implement head by Timothy Elliott · 13 years ago
  79. f7c1de3 More cmp.c shrinkage. by Rob Landley · 13 years ago
  80. e0bd691 Iterative cleanups on cmp.c: silence warnings, only free if TOYBOX_FREE, use xopen(), style cleanup on curly brackets. by Rob Landley · 13 years ago
  81. 7903108 Switching who default to 'n' since it's not yet fully implemented. by Luis Felipe Strano Moraes · 13 years ago
  82. 0352f42 Added time to the output of who command. by Luis Felipe Strano Moraes · 13 years ago
  83. 5232ac0 Initial version of who command. by Luis Felipe Strano Moraes · 13 years ago
  84. b29d74e Silence really boring compiler warning. by Luis Felipe Strano Moraes · 13 years ago
  85. ae079d2 Implement cmp by Timothy Elliott · 13 years ago
  86. 237558e Fix sort -uc (pointer vs pointer to pointer confusion, covered by typecast). by Rob Landley · 13 years ago
  87. 44a36ea Bugfix for -x, add CONFIG_SORT_FLOAT, and new test suite entry. by Rob Landley · 13 years ago
  88. 87bfa79 This id implementation is not remotely SUSv4 compliant, default n until I get a chance to finish it. by Rob Landley · 13 years ago
  89. 1bc8463 Tweak help command's help text, and remove unimplemented option. by Rob Landley · 13 years ago
  90. 27f5779 Add autodetect for container support. by Rob Landley · 13 years ago
  91. ec85a54 Implement xargs -E. by Rob Landley · 13 years ago
  92. 186e384 Very slight efficiency tweak. by Rob Landley · 13 years ago
  93. ee64a29 Basename and env are usable, default them to y. by Rob Landley · 13 years ago
  94. 801c3d5 More work on xargs: bugfix and tests. by Rob Landley · 13 years ago
  95. 17876a0 Implement xargs (first pass, not full SUSv4 yet). by Rob Landley · 13 years ago
  96. 95c5099 Add id command from Tim Bird. by Rob Landley · 13 years ago
  97. 48522df Patch shouldn't be bothered by DOS newlines. by Rob Landley · 13 years ago
  98. ffdfdc2 'env' and 'basename' refactored by Tryn Mirell · 13 years ago
  99. acf4b10 Comment changes, and add a blank line to the help text. by Rob Landley · 13 years ago
  100. 8b983f3 Add -x option to sort (like -n, but hexadecimal), because I needed it for something. by Rob Landley · 13 years ago