aboutsummaryrefslogtreecommitdiff
path: root/lib/args.c
AgeCommit message (Expand)Author
2019-05-13Comment tweak.Rob Landley
2019-03-10Add TOYFLAG_ARGFAIL() to allow argument parsing failures to exit with value.Rob Landley
2018-12-26Teach the argument plumbing how to do -@ for mkfs.vfatRob Landley
2018-12-17Only set FLAGS_NODASH when arguments didn't have a dash.Rob Landley
2018-10-21Add % to lib/args.c (long time in milliseconds), add xmillitime(), redoRob Landley
2018-03-14Fix last uninitialized warning.Elliott Hughes
2018-03-10Add a way for commands to distinguish "ps -ax" from "ps ax".Rob Landley
2017-06-05Have help_exit() give a brief "See %s --help" message instead of theRob Landley
2017-03-23Now that just about everything has --help, don't output help for argument errorsRob Landley
2017-01-04An option can't exclude itself, so "abc[-ab][!abc]" with "command -a -b"Rob Landley
2016-07-04Now that we're using the adjusted option string, need to skip placeholders in...Rob Landley
2015-12-10Expand toys.optargs to 64 bits so people adding more options to ls don't run ...Rob Landley
2015-09-11Replace toys.exithelp with help_exit() in lib.Rob Landley
2015-07-10Move comment about TOYBOX_DEBUG to start of file so it's more obvious.Rob Landley
2015-01-18Remove trailing whitespace.Rob Landley
2015-01-01Debris from flag handling rewrite: don't allow -^A to actually trigger.Rob Landley
2014-08-15Fix bug reported by Ashwini Sharma: [-abc] syntax to switch off a command forgetRob Landley
2013-09-21Tweak args (yank old + that never worked, rename | to +), and add uname -o as...Rob Landley
2013-09-21Fluff out option parsing documentation, add another DEBUG test.Rob Landley
2013-09-09Fix [-group] argument dropping.Rob Landley
2013-09-06Make [-abc] exclude logic clear argument slots when disabling options.Rob Landley
2013-09-01Improve --longopt parsing: general bugfixes, better error reporting, new ; op...Rob Landley
2013-07-31Cleanup renice and implement '|' (required option) in argument parsing.Rob Landley
2013-06-22Option type @ counts number of occurrences, it doesn't take an argument.Rob Landley
2013-04-30Fix bare longopts to set unique optflag bits.Rob Landley
2013-04-14Move guts of help command into show_help() in lib/help.c, with config TOYBOX_...Rob Landley
2013-04-06Fix argument parsing so -- doesn't include itself in output.Rob Landley
2012-12-29Ashwini Sharma pointed out that my previous tweak to [!abc] groups still didn...Rob Landley
2012-12-27Fix option grouping.Rob Landley
2012-11-25Fix typo.Rob Landley
2012-11-19Teach option parsing about [groups] of related options.Rob Landley
2012-11-13Reindent to two spaces per level. Remove vi: directives that haven't worked r...Rob Landley
2012-11-02Use stridx.Rob Landley
2012-07-15Genericize llist code a bit: rename llist_free() to llist_traverse(), and no ...Rob Landley
2012-03-12Redo tail to use optargs and optionally support lseek. Add support to optargs...Rob Landley
2012-02-28Add "-" type to optargs and teach tail.c to use it. Tighten up help text, us...Rob Landley
2012-02-26Teach lib/args.c that " " this option must take a _separate_ argument, so "ki...Rob Landley
2012-02-18Nathan McSween convinced me compilers that inline memset() can optimize the b...Rob Landley
2012-02-03Removing unecessary allocation.Luis Felipe Strano Moraes
2012-01-29Add <>= to lib/args.c, with documentation.Rob Landley
2011-11-30Split out parse_optflaglist(), and move local variables to optflagstate.Rob Landley
2011-11-28Fix "tar cvjfC file dir", make @ not eat an argument, add debug check for (as...Rob Landley
2008-07-03Teach option parsing logic that ^ means stop parsing after this option.Rob Landley
2008-06-26Option parsing: stopearly is now a ^ prefix (not +), and an option string withRob Landley
2008-06-16Assemble '*' repeated argument list in order. Also implement '@' counter.Rob Landley
2008-05-17Fix command line option parsing so "echo -xen" actually prints "-xen". AddRob Landley
2008-05-04Fluffier error message.Rob Landley
2008-03-24Enabling debugging should not change behavior. Oops.Rob Landley
2008-02-18Add enable/disable/exclude logic, update docs.Rob Landley
2008-02-12Add toys.optc, an argv-style count for toys.optargs.Rob Landley