1. 628eb9b More header fiddling: crypt.h is silly, SUSv4 requires crypt() to be prototyped in unistd.h. The fact glibc refuses to do so without a wacky #define is a glibc bug, treat it as such. by Rob Landley · 12 years ago
  2. ef7e7eb A few more links for the index. by Rob Landley · 12 years ago
  3. 56fccc3 Cosmetic tweak to command preamble. by Rob Landley · 12 years ago
  4. e28e4b9 Fix an embarassing bug causing ls -l to segfault on 32 bit targets. by Rob Landley · 12 years ago
  5. 918de13 Delete wrappers converted to commands. by Rob Landley · 12 years ago
  6. 15a8d71 Multiplexer needs stayroot flag for suid handling. by Rob Landley · 12 years ago
  7. 60a99fa The linux from scratch build wants -v on chmod. by Rob Landley · 12 years ago
  8. 4af1e1d Implement DIRTREE_SYMFOLLOW and ls -cSHL. by Rob Landley · 12 years ago
  9. 9835622 Feeding -1 to xdup() isn't an error. by Rob Landley · 12 years ago
  10. 23a66c8 Add ls -kqsunort, and fix -F @symlink. by Rob Landley · 12 years ago
  11. 67a069d Update chmod to work with new dirtree, and fix bugs in string_to_mode(). by Rob Landley · 12 years ago
  12. 38d3cfb Changed my mind about the design again, now callback is dirtree_opennode() and recursion choice is how caller interprets flags. by Rob Landley · 12 years ago
  13. 4fa1b32 Factor out dirtree_comeagain() callback, setting up depth-first search with open filehandle in node->extra. by Rob Landley · 12 years ago
  14. 124786a Convert another realpath use to xrealpath(). by Rob Landley · 12 years ago
  15. 0f6f980 Convert mktemp to use xrealpath, and general clean up while there. by Rob Landley · 12 years ago
  16. eec4637 Add xrealpath() at suggestion of Ashish Briggers. by Rob Landley · 12 years ago
  17. 44785cd Implement -C and -x for ls. by Rob Landley · 12 years ago
  18. e495a7a cp doesn't really need the optstring + logic. Still needs to be updated for new dirtree, though. by Rob Landley · 12 years ago
  19. 6cd8ae6 Update chgrp so -R works, tweaking DIRTREE_COMEAGAIN design along the way. by Rob Landley · 12 years ago
  20. fb98c1e Probe available libraries to link --as-needed, avoiding "unknown libarary" errors. by Rob Landley · 12 years ago
  21. 8c4ae8a dirtree logic cleanup: switch DIRTREE_NORECURSE and DIRTREE_NOSAVE to DIRTREE_RECURSE and DIRTREE_SAVE. by Rob Landley · 12 years ago
  22. bdcb80e Silence pointless warnings. by Rob Landley · 12 years ago
  23. b6f601e First pass at a complete rewrite of string_to_mode(). (It compiled!) by Rob Landley · 12 years ago
  24. 39f4e7d Remove strndupa() gnu-ism at Georgi's suggestion, and adjust mdev to compile with new dirtree. (No idea if it works, this command was never finished and needs a lot more work.) by Rob Landley · 12 years ago
  25. 4d0f02f Whitespace (tabs vs spaces) cleanup. by Rob Landley · 12 years ago
  26. d6f7e78 Addition of mktemp by Elie De Brauwer · 12 years ago
  27. e3b171e Georgi pointed out that some overly-pedantic C libraries require you to include both "string.h" and "strings.h". (Most don't.) by Rob Landley · 12 years ago
  28. f3b4a91 Simplify/unify listfiles recursion: populate directory node (and detect top of tree) at start of function rather than end (and redundantly in main). Move title printing down next to total printing. by Rob Landley · 12 years ago
  29. 0b11a16 Adding initial version of login.c by Elie De Brauwer · 12 years ago
  30. 7792f8f Make -d work in ls. by Rob Landley · 12 years ago
  31. 5c4ac67 Require -R to recurse, but descend into directories listed on command line. by Rob Landley · 12 years ago
  32. 9b3af46 More work on ls. Now ls -lR sort of works-ish. by Rob Landley · 12 years ago
  33. 842d3d1 Adding logname by Elie De Brauwer · 13 years ago
  34. e692fc1 Refactor uniq.c a bit. by Rob Landley · 13 years ago
  35. 1bcdf53 Teach make.sh to create flag macros, but with the wrong names. Dunno how to make a translation macro or #ifdef guard to get the names right so they actually be _used_ yet... by Rob Landley · 13 years ago
  36. eb7ea22 Rewrite dirtree so we don't need readdir, scandir, and fts.h. Rewrite ls (from scratch) to use new dirtree infrastructure. (This breaks everything else that currently uses dirtree.) by Rob Landley · 13 years ago
  37. 43e9d33 Comment and whitespace changes. by Rob Landley · 13 years ago
  38. ea5c68a Use FLAG_ macros for echo optflags. by Rob Landley · 13 years ago
  39. 2a9dde0 Match uint64_t with PRIu64 to avoid warnings on 64 bit builds. by Rob Landley · 13 years ago
  40. f69042e toybuf usage enhancement, tabs to spaces, teminal height refresh by Elie De Brauwer · 13 years ago
  41. 49861be Replace ?: gcc extension with standard code by Kevin Chase · 13 years ago
  42. 0392c17 Adding vmstat by Elie De Brauwer · 13 years ago
  43. 8ad2a7d Adding mountpoint by Elie De Brauwer · 13 years ago
  44. 24e0c51 Implement comm. by Ilya Kuzmich · 13 years ago
  45. 848a033 The -s flag includes staying quiet about missing files. by Rob Landley · 13 years ago
  46. 66b0f99 Test the right variable in NULL guard, and add NOP "s" suffix. by Rob Landley · 13 years ago
  47. f78c63a Using /dev/tty for yesno() is wrong because yes 'n' | cp -ial needs to work. by Rob Landley · 13 years ago
  48. cf6bcb2 Unwind gratuitous macros. by Rob Landley · 13 years ago
  49. f9fdd3c Have probe for unshare test for actual unshare() function in libc. by Rob Landley · 13 years ago
  50. 05744b3 Add string to mode_t parser by Daniel Walter · 13 years ago
  51. ee00a7f Remove "feature test macros", replace non-portable fdprintf() with standard fprintf(). by Rob Landley · 13 years ago
  52. 522d906 Implement Apple and Android versions of getline(), getdelim(), and clearenv(). by Georgi Chorbadzhiyski · 13 years ago
  53. c4849f7 The linux header doesn't prototype unshare, and the glibc header introduced a regression in recent versions inexplicably crediting a linux feature to the FSF, so add the prototype ourselves. by Rob Landley · 13 years ago
  54. bc32941 Simplify nanosleep call. by Rob Landley · 13 years ago
  55. 16a2926 Implement uniq. by Georgi Chorbadzhiyski · 13 years ago
  56. b9bfb87 Default new ch* commands to n until enough is implemented not to break aboriginal build. by Rob Landley · 13 years ago
  57. 410aeba New toys - chmod, chown, and chgrp. by Georgi Chorbadzhiyski · 13 years ago
  58. 7fa9a05 Extensive semi-gratuitous refactoring: factor out common code, handle euid!=uid and egid!=gid cases. (Note: test suite requires root access, possibly container support.) by Rob Landley · 13 years ago
  59. cc0d4ab Tighten up the code a bit, and use actual process group id instead of what /etc/passwd says. by Rob Landley · 13 years ago
  60. 6da3be9 Yet another header for technical susv4 compliance. by Rob Landley · 13 years ago
  61. 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 · 13 years ago
  62. 9f4c1fd Fix nanosleep() usage. by Georgi Chorbadzhiyski · 13 years ago
  63. 28427d2 Replace deprecated libc function with its totally renamed equivalent. by Rob Landley · 13 years ago
  64. 35cb740 Work around glibc regression by including Linux header directly. by Rob Landley · 13 years ago
  65. 137bf34 Add lib/portability.h description with explanation of SWAP() macros. by Rob Landley · 13 years ago
  66. b7529b6 More stabs at getting #includes right, and moving off of deprecated functions. by Rob Landley · 13 years ago
  67. 13cacbd Fix mkdir -p to accept paths that already exist, and detect path ending in a file. by Rob Landley · 13 years ago
  68. f05f660 Consolidate headers. by Rob Landley · 13 years ago
  69. b7a4862 Silence a couple pointless warnings. by Rob Landley · 13 years ago
  70. e430db2 Cleanups: use perror_msg() and make mode a global. by Rob Landley · 13 years ago
  71. f656fc9 Add mkfifo. by Georgi Chorbadzhiyski · 13 years ago
  72. ed6ed62 Web page updates. by Rob Landley · 13 years ago
  73. 9317c06 Comment and whitespace tweaks. by Rob Landley · 13 years ago
  74. 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
  75. 057aa04 Add mkdir. by Georgi Chorbadzhiyski · 13 years ago
  76. 4250d52 Fix xargs -0 option. by Rob Landley · 13 years ago
  77. e2aa5cb whoami: fix toy description, no code changes by Pere Orga · 13 years ago
  78. 4bb140e Add clear. by Rob Landley · 13 years ago
  79. a30a84a Add tac. (Shell wrapper is smaller, but all-in-one static binary is compelling use case.) by Rob Landley · 13 years ago
  80. fd374f9 Minor optimization. by Rob Landley · 13 years ago
  81. 0d20c93 Add whoami. by Georgi Chorbadzhiyski · 13 years ago
  82. 2c27fcf Fix build on slackware-current. by Georgi Chorbadzhiyski · 13 years ago
  83. 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
  84. 2790105 Implement printenv command. by Georgi Chorbadzhiyski · 13 years ago
  85. 2b7b1ad Make floating point support depend on TOYBOX_FLOAT, make 0.1m work. by Rob Landley · 13 years ago
  86. f1e82df Add fraction and extension support to sleep. by Georgi Chorbadzhiyski · 13 years ago
  87. e8a9df4 Add -A to ls by Andre Renaud · 13 years ago
  88. 84b226d Added tag 0.2.1 for changeset 9bcc288a1c54 by Rob Landley · 13 years ago
  89. 344c267 Fix from Georgi Chorbadzhiyski to make cross compiling more robust. by Rob Landley · 13 years ago
  90. ad065e2 This uses floating point. by Rob Landley · 13 years ago
  91. 52265e9 Add copyright notice, fluff out help text, use xexec(). by Rob Landley · 13 years ago
  92. 03a8f74 Only show one normal difference (sans -l) and EOF message should go to stdout, not stderr. by Rob Landley · 13 years ago
  93. 7339560 Cleanup pass, and support unrecognized slash chars ala "echo -e \p". by Rob Landley · 13 years ago
  94. 829503e Add -n, which kernel build needs. by Rob Landley · 13 years ago
  95. f2e61cb Now that generated/Config.probed is its own file, add it to build dependencies. by Rob Landley · 13 years ago
  96. e7c9a6d Make documentation even fluffier. by Rob Landley · 13 years ago
  97. 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
  98. f793d53 Upgrade yesno() and make cp -i use it. by Rob Landley · 13 years ago
  99. b0dcd66 The aboriginal linux build needs ls -ditc and probably some more unimplemented options yet... by Rob Landley · 13 years ago
  100. bbe500e Web page tweaks. Remove background image (makes it hard ot read for some people), and use local roadmap instead of third party wiki. by Rob Landley · 13 years ago