summaryrefslogtreecommitdiffstats
path: root/parse.c
Commit message (Collapse)AuthorAgeFilesLines
* Add some missing perror() callsTavian Barnes2017-02-071-14/+18
|
* Implement -printf/-fprintfTavian Barnes2017-02-051-4/+68
| | | | | Based on a patch by Fangrui Song <i@maskray.me>. Closes #16.
* Implement -nouser and -nogroupTavian Barnes2017-02-041-0/+16
|
* Add some text to the -help outputTavian Barnes2016-12-201-1/+27
|
* Implement -mnewerTavian Barnes2016-12-201-0/+1
|
* Add tera and peta suffices for -sizeTavian Barnes2016-12-201-1/+7
|
* Implement -sparse from FreeBSD findTavian Barnes2016-12-201-0/+8
|
* Support -[gu]id NAME like BSD findTavian Barnes2016-12-201-24/+10
|
* Don't check errno after get{gr,pw}nam()Tavian Barnes2016-12-201-24/+6
| | | | | Turns out it doesn't always keep errno 0, even if the only problem is a failed lookup. This was observed on a machine with Kerberos auth.
* Implement BSD find's -depth NTavian Barnes2016-12-181-1/+18
|
* Add support for -x (same as -mount/-xdev, from BSD)Tavian Barnes2016-12-181-0/+1
|
* Implement -regex, -iregex, and -regextype/-ETavian Barnes2016-12-181-2/+114
|
* Move portability code into util.hTavian Barnes2016-12-041-0/+1
|
* bftw: Make bftw_flags more similar to fts() options.Tavian Barnes2016-11-211-9/+9
|
* Support -perm +MODE for symbolic modes.Tavian Barnes2016-11-211-4/+0
| | | | Only things like -perm +777 are disallowed by GNU find.
* parse: Don't print warnings if standard in is not a terminal.Tavian Barnes2016-11-131-1/+1
|
* Implement -perm.Tavian Barnes2016-10-291-9/+268
|
* parse: Use free_expr(expr), not free(expr).Tavian Barnes2016-10-241-7/+7
|
* Implement -ignore_readdir_race.Tavian Barnes2016-10-241-5/+19
|
* Check for POSIX timers before using them.Tavian Barnes2016-10-241-2/+25
|
* bftw: Add support for some exotic file types, where available.Tavian Barnes2016-10-021-0/+3
|
* parse: Ignore -- on the command line.Tavian Barnes2016-10-021-5/+21
| | | | | | | | | | | | | | | | | | find uses -- to indicate the end of the flags. That is, $ find -L -- -type f is allowed, but $ find -- -L -type f results in an error about an unknown predicate `-L`. This behaviour doesn't seem particularly useful -- in particular, unlike most other tools, it doesn't help you if you want to specify a filename beginning with a -. So to ensure bfs is compatible with all GNU find command lines, we just ignore -- whenever it appears.
* Give suggestions for operators too.Tavian Barnes2016-09-061-19/+47
|
* Use the two-star list augmenting method.Tavian Barnes2016-09-051-8/+4
|
* Require -{min,max}depth argument to be positive.Tavian Barnes2016-09-041-1/+1
|
* Implement typo detection for literals.Tavian Barnes2016-09-041-1/+12
|
* Use a table-driven parser for literals.Tavian Barnes2016-09-041-291/+281
|
* Implement -f PATH from BSD find.Tavian Barnes2016-07-131-1/+28
|
* Use a linked list to store the root paths.Tavian Barnes2016-07-131-23/+38
|
* Implement -D rates.Tavian Barnes2016-06-281-11/+30
|
* Use underscores.Tavian Barnes2016-06-191-24/+24
|
* Re-work optimization levels.Tavian Barnes2016-06-091-5/+15
| | | | | | -O3 is the new default, for the future cost-based optimizer. -O4 enables the surprising/aggressive optimizations that used to be under -O3. -Ofast is a synonym for -O4.
* Allow flags like -L before ',' or ')' as pathnames.Tavian Barnes2016-06-091-17/+34
|
* Implement -fprint and -fprint0.Tavian Barnes2016-06-081-2/+86
|
* Optimize ( ! x , y ) <==> ( x , y )Tavian Barnes2016-06-081-2/+14
|
* Treat '-', ')', and ',' as paths when possible.Tavian Barnes2016-06-081-34/+62
|
* Remove redundant pure expressions from the top level.Tavian Barnes2016-06-071-5/+28
|
* Optimize using De Morgan's laws.Tavian Barnes2016-06-071-0/+61
|
* Warn on things like "-not -maxdepth 1".Tavian Barnes2016-06-071-0/+6
|
* Move purity optimizations to -O2.Tavian Barnes2016-06-071-10/+12
|
* Implement -D opt.Tavian Barnes2016-06-071-27/+81
|
* At -O3, replace command lines with no actions by -false.Tavian Barnes2016-06-071-0/+5
|
* Use complete sentences in error messages consistently.Tavian Barnes2016-05-221-3/+3
|
* Use argc/argv naming consistently.Tavian Barnes2016-05-221-71/+71
|
* Implement -{exec,ok}{,dir}.Tavian Barnes2016-05-221-5/+51
|
* Implement -size.Tavian Barnes2016-03-121-14/+108
|
* Implement -used.Tavian Barnes2016-03-051-0/+2
| | | | | | This doesn't agree with find's output, but I think find is buggy here. For example, find -used +0 is returning fewer results than find -used 1, which makes no sense given that 1 is greater than 0.
* Fix a typo that caused a segfault with missing arguments.Tavian Barnes2016-02-271-1/+1
|
* Implement (most of) -newerXY.Tavian Barnes2016-02-271-0/+81
|
* Fix -daystart to not round 0 upwards.Tavian Barnes2016-02-271-3/+6
|