1. 2c1cf4a Remove trailing whitespace. by Rob Landley · 9 years ago
  2. cf2516a Debris from flag handling rewrite: don't allow -^A to actually trigger. by Rob Landley · 9 years ago
  3. 845c8da Fix bug reported by Ashwini Sharma: [-abc] syntax to switch off a command forget by Rob Landley · 10 years ago
  4. c705b95 Tweak args (yank old + that never worked, rename | to +), and add uname -o as a synonym for -s. by Rob Landley · 11 years ago
  5. dc6db1a Fluff out option parsing documentation, add another DEBUG test. by Rob Landley · 11 years ago
  6. 9d4cd46 Fix [-group] argument dropping. by Rob Landley · 11 years ago
  7. c8a4997 Make [-abc] exclude logic clear argument slots when disabling options. by Rob Landley · 11 years ago
  8. b7162a4 Improve --longopt parsing: general bugfixes, better error reporting, new ; option for optional arguments only suppliable with =. by Rob Landley · 11 years ago
  9. 9e89d47 Cleanup renice and implement '|' (required option) in argument parsing. by Rob Landley · 11 years ago
  10. 4d3b3da Option type @ counts number of occurrences, it doesn't take an argument. by Rob Landley · 11 years ago
  11. 6938c0b Fix bare longopts to set unique optflag bits. by Rob Landley · 11 years ago
  12. 36ffc5a Move guts of help command into show_help() in lib/help.c, with config TOYBOX_HELP controlling infrastructure. by Rob Landley · 11 years ago
  13. a137c3f Fix argument parsing so -- doesn't include itself in output. by Rob Landley · 11 years ago
  14. 8abf095 Ashwini Sharma pointed out that my previous tweak to [!abc] groups still didn't get the error reporting right (test case "touch -d 12 -r f2 f1"). This says "no 'r' with 'd'" for that, and still shouldn't be able to fall off the end of the list (segfault) because an option can't conflict with itself (that's what the ~(1<<i) on lib/args.c line 317 is for). by Rob Landley · 11 years ago
  15. 6d91e0f Fix option grouping. by Rob Landley · 11 years ago
  16. de51192 Fix typo. by Rob Landley · 11 years ago
  17. 7f909bd Teach option parsing about [groups] of related options. by Rob Landley · 12 years ago
  18. 7aa651a Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style. by Rob Landley · 12 years ago
  19. 58fe702 Use stridx. by Rob Landley · 12 years ago
  20. 9e2b6db Genericize llist code a bit: rename llist_free() to llist_traverse(), and no longer accept NULL as a synonym for free. by Rob Landley · 12 years ago
  21. 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
  22. 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 · 12 years ago
  23. 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 · 12 years ago
  24. 2b54b1a Nathan McSween convinced me compilers that inline memset() can optimize the bzero case pretty well. by Rob Landley · 12 years ago
  25. d387c01 Removing unecessary allocation. by Luis Felipe Strano Moraes · 12 years ago
  26. b6063de Add <>= to lib/args.c, with documentation. by Rob Landley · 12 years ago
  27. 763e42b Split out parse_optflaglist(), and move local variables to optflagstate. by Rob Landley · 12 years ago
  28. 3e87923 Fix "tar cvjfC file dir", make @ not eat an argument, add debug check for (as yet) unsupported multi-function option (ala "x*@"). by Rob Landley · 12 years ago
  29. 1a35c47 Teach option parsing logic that ^ means stop parsing after this option. by Rob Landley · 16 years ago
  30. b1487dc Option parsing: stopearly is now a ^ prefix (not +), and an option string with by Rob Landley · 16 years ago
  31. 4ac6656 Assemble '*' repeated argument list in order. Also implement '@' counter. by Rob Landley · 16 years ago
  32. 1a221d9 Fix command line option parsing so "echo -xen" actually prints "-xen". Add by Rob Landley · 16 years ago
  33. 8e99874 Fluffier error message. by Rob Landley · 16 years ago
  34. aba353e Enabling debugging should not change behavior. Oops. by Rob Landley · 16 years ago
  35. 61190a3 Add enable/disable/exclude logic, update docs. by Rob Landley · 16 years ago
  36. 26bf9e6 Add toys.optc, an argv-style count for toys.optargs. by Rob Landley · 16 years ago
  37. b1aaba1 Zap toylist.h, moving contents of global structures into DEFINE_GLOBALS() by Rob Landley · 16 years ago
  38. 860f263 Patch from Charlie Shepherd: remove extra \n from error_exit() arguments. by Rob Landley · 16 years ago
  39. 2c22685 Remove trailing whitespace (thanks to Charlie Shepherd), and a couple comment by Rob Landley · 17 years ago
  40. d06c58d Promote help to global config option, teach error_exit() to output usage message when called by Rob Landley · 17 years ago
  41. 7aa9d8f Fix "Need 1 arguments". by Rob Landley · 17 years ago
  42. f575716 Add atolx() which understands extensions for kilobytes and megabytes and such. by Rob Landley · 17 years ago
  43. de05a70 Add "make defconfig". Modify global options to start with CONFIG_TOYBOX_. by Rob Landley · 17 years ago
  44. 028a544 Update args.c to implement numeric arguments. by Rob Landley · 17 years ago
  45. 1322beb xopen() wants 2 arguments unless you're creating a file, in which case you by Rob Landley · 17 years ago
  46. 58c6c1b More work on option parsing. "df -t tmpfs" actually seems to work now. by Rob Landley · 17 years ago
  47. fdb667e Fix a half-dozen bugs in argument parsing. More seems to work than not now. by Rob Landley · 17 years ago
  48. 54ebcce Allocate a more sane amount of memory. by Rob Landley · 18 years ago
  49. 2a813ff Add one if() that has lots of whitespace fallout. by Rob Landley · 18 years ago
  50. 8324b89 New option parsing infrastructure (doesn't use getopt). Hook it up to by Rob Landley · 18 years ago