Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement -ignore_readdir_race. | Tavian Barnes | 2016-10-24 | 1 | -17/+25 |
| | |||||
* | Check for POSIX timers before using them. | Tavian Barnes | 2016-10-24 | 1 | -5/+23 |
| | |||||
* | Check for errors in -print and friends. | Tavian Barnes | 2016-10-16 | 1 | -4/+18 |
| | |||||
* | bftw: Add support for some exotic file types, where available. | Tavian Barnes | 2016-10-02 | 1 | -1/+22 |
| | |||||
* | Use a linked list to store the root paths. | Tavian Barnes | 2016-07-13 | 1 | -2/+2 |
| | |||||
* | Implement -D rates. | Tavian Barnes | 2016-06-28 | 1 | -2/+45 |
| | |||||
* | Use underscores. | Tavian Barnes | 2016-06-19 | 1 | -8/+8 |
| | |||||
* | Re-work optimization levels. | Tavian Barnes | 2016-06-09 | 1 | -2/+2 |
| | | | | | | -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. | ||||
* | Implement -fprint and -fprint0. | Tavian Barnes | 2016-06-08 | 1 | -6/+16 |
| | |||||
* | Implement -D opt. | Tavian Barnes | 2016-06-07 | 1 | -0/+3 |
| | |||||
* | eval: Clean up open fd counting code. | Tavian Barnes | 2016-06-03 | 1 | -5/+9 |
| | |||||
* | Fix hypothetical leak if waitpid() fails. | Tavian Barnes | 2016-06-02 | 1 | -1/+1 |
| | |||||
* | Use argc/argv naming consistently. | Tavian Barnes | 2016-05-22 | 1 | -9/+9 |
| | |||||
* | Implement -{exec,ok}{,dir}. | Tavian Barnes | 2016-05-22 | 1 | -1/+208 |
| | |||||
* | Remove an errant debugging printf(). | Tavian Barnes | 2016-04-10 | 1 | -1/+0 |
| | |||||
* | Implement -size. | Tavian Barnes | 2016-03-12 | 1 | -1/+24 |
| | |||||
* | Implement -used. | Tavian Barnes | 2016-03-05 | 1 | -0/+15 |
| | | | | | | 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 potential leaks in -lname. | Tavian Barnes | 2016-02-27 | 1 | -12/+17 |
| | |||||
* | Don't repeat reported error messages from bftw(). | Tavian Barnes | 2016-02-27 | 1 | -1/+9 |
| | | | | Fixes #7. | ||||
* | Implement -O. | Tavian Barnes | 2016-02-23 | 1 | -0/+4 |
| | |||||
* | Implement -D stat. | Tavian Barnes | 2016-02-22 | 1 | -0/+31 |
| | |||||
* | Fix infinite recursion in eval_not(). | Tavian Barnes | 2016-02-21 | 1 | -6/+13 |
| | | | | And use a helper function to prevent this kind of bug in the future. | ||||
* | Fix an uninitialized value warning. | Tavian Barnes | 2016-02-17 | 1 | -2/+5 |
| | |||||
* | s/color_table/colors/. | Tavian Barnes | 2016-02-14 | 1 | -1/+1 |
| | |||||
* | Refactor color handling. | Tavian Barnes | 2016-02-14 | 1 | -3/+5 |
| | | | | The main benefit is colored warnings/errors during parsing. | ||||
* | Implement -lname and -ilname. | Tavian Barnes | 2016-02-14 | 1 | -0/+36 |
| | |||||
* | Add brief -help and -version support. | Tavian Barnes | 2016-02-14 | 1 | -0/+4 |
| | |||||
* | Don't stop early just because deleting failed. | Tavian Barnes | 2016-02-14 | 1 | -1/+1 |
| | |||||
* | Implement -iname and -ipath. | Tavian Barnes | 2016-02-13 | 1 | -4/+4 |
| | |||||
* | Fix -name handling when the root has trailing slashes. | Tavian Barnes | 2016-02-13 | 1 | -1/+25 |
| | |||||
* | Implement -xtype. | Tavian Barnes | 2016-02-13 | 1 | -0/+48 |
| | |||||
* | Follow links if appropriate in predicates. | Tavian Barnes | 2016-02-13 | 1 | -2/+2 |
| | |||||
* | Check the number of open FDs at the start. | Tavian Barnes | 2016-02-12 | 1 | -22/+42 |
| | | | | | | This fixes the issues with things like $ bfs -empty 3</dev/null | ||||
* | Consolidate some error reporting logic. | Tavian Barnes | 2016-02-12 | 1 | -7/+12 |
| | |||||
* | Use 'cmdline' instead of 'cl'. | Tavian Barnes | 2016-02-12 | 1 | -17/+17 |
| | |||||
* | Report failures that happen inside predicates. | Tavian Barnes | 2016-02-12 | 1 | -6/+29 |
| | |||||
* | Keep one fd free for the predicates themselves. | Tavian Barnes | 2016-02-11 | 1 | -3/+3 |
| | | | | | | | | | | | | Otherwise -empty may start failing once the dircache grows. It's still possible to cause failures with $ bfs some/big/dir -empty 3</dev/null because one more fd than expected will be allocated, but that's not a common case. It could be worked around by reading /proc/self/fd/ at startup. | ||||
* | Implement -samefile. | Tavian Barnes | 2016-02-10 | 1 | -0/+12 |
| | |||||
* | Implement -links. | Tavian Barnes | 2016-02-04 | 1 | -0/+12 |
| | |||||
* | Implement -inum. | Tavian Barnes | 2016-02-04 | 1 | -0/+12 |
| | |||||
* | Implement -[ac]?newer. | Tavian Barnes | 2016-02-04 | 1 | -0/+37 |
| | |||||
* | Implements -daystart. | Tavian Barnes | 2016-02-04 | 1 | -1/+1 |
| | |||||
* | Refactor how -[acm]{min,time} are handled. | Tavian Barnes | 2016-02-04 | 1 | -79/+22 |
| | |||||
* | Don't use typedefs to avoid struct/enum tags. | Tavian Barnes | 2016-02-04 | 1 | -36/+36 |
| | |||||
* | Add -gid and -uid support. | Tavian Barnes | 2016-02-02 | 1 | -0/+24 |
| | |||||
* | Add -[acm]{min,time} support. | Tavian Barnes | 2016-02-02 | 1 | -11/+130 |
| | |||||
* | Implement -empty. | Tavian Barnes | 2016-01-30 | 1 | -0/+44 |
| | |||||
* | Split out parsing code. | Tavian Barnes | 2015-11-29 | 1 | -0/+263 |