summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Set the version to 0.67.0.67Tavian Barnes2016-02-142-3/+14
| | | | | For now, version numbers are the fraction of GNU find features supported.
* Implement -user and -group.Tavian Barnes2016-02-142-1/+100
|
* s/color_table/colors/.Tavian Barnes2016-02-144-19/+19
|
* Refactor color handling.Tavian Barnes2016-02-145-65/+122
| | | | The main benefit is colored warnings/errors during parsing.
* Don't modify the result of getenv().Tavian Barnes2016-02-142-4/+11
|
* Implement -lname and -ilname.Tavian Barnes2016-02-144-2/+67
|
* "Implement" -noleaf.Tavian Barnes2016-02-141-0/+15
|
* Implement -mount/-xdev.Tavian Barnes2016-02-143-3/+20
|
* Add brief -help and -version support.Tavian Barnes2016-02-143-2/+66
|
* Don't stop early just because deleting failed.Tavian Barnes2016-02-141-1/+1
|
* Implement -iname and -ipath.Tavian Barnes2016-02-134-10/+59
|
* Fix -name handling when the root has trailing slashes.Tavian Barnes2016-02-133-4/+60
|
* Implement -xtype.Tavian Barnes2016-02-134-6/+76
|
* Follow links if appropriate in predicates.Tavian Barnes2016-02-133-7/+7
|
* More s/cl/cmdline/.Tavian Barnes2016-02-132-49/+49
|
* tests.sh: Don't re-create the same directory structures needlessly.Tavian Barnes2016-02-131-69/+56
|
* Check the number of open FDs at the start.Tavian Barnes2016-02-121-22/+42
| | | | | | This fixes the issues with things like $ bfs -empty 3</dev/null
* Consolidate some error reporting logic.Tavian Barnes2016-02-121-7/+12
|
* Use 'cmdline' instead of 'cl'.Tavian Barnes2016-02-122-19/+19
|
* Report failures that happen inside predicates.Tavian Barnes2016-02-122-7/+30
|
* Keep one fd free for the predicates themselves.Tavian Barnes2016-02-111-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 Barnes2016-02-104-8/+66
|
* Add a README.Tavian Barnes2016-02-101-0/+93
|
* Implement -L/-follow.Tavian Barnes2016-02-094-34/+110
|
* bftw: Don't give up when following a broken symlink.Tavian Barnes2016-02-062-2/+16
|
* Implement -P and -H.Tavian Barnes2016-02-044-9/+57
|
* Drive the literal parsing with a switch.Tavian Barnes2016-02-041-82/+157
|
* Implement -links.Tavian Barnes2016-02-044-1/+32
|
* Implement -inum.Tavian Barnes2016-02-043-0/+15
|
* Implement -[ac]?newer.Tavian Barnes2016-02-045-2/+93
|
* Implements -daystart.Tavian Barnes2016-02-043-9/+48
|
* Refactor how -[acm]{min,time} are handled.Tavian Barnes2016-02-043-92/+68
|
* Leave some struct expr fields uninitialized.Tavian Barnes2016-02-041-7/+0
|
* Don't use typedefs to avoid struct/enum tags.Tavian Barnes2016-02-048-259/+254
|
* Add -gid and -uid support.Tavian Barnes2016-02-024-1/+46
|
* Add -[acm]{min,time} support.Tavian Barnes2016-02-023-30/+242
|
* bftw: Add missing #include.Tavian Barnes2016-01-301-0/+1
|
* Implement -empty.Tavian Barnes2016-01-304-1/+53
|
* bftw: Fix fd leak if fdopendir() fails.Tavian Barnes2016-01-301-1/+5
|
* Split out parsing code.Tavian Barnes2015-11-295-350/+412
|
* Implement -executable, -readable, and -writable.Tavian Barnes2015-11-282-1/+40
|
* Implement warnings for misplaced options.Tavian Barnes2015-11-271-47/+77
|
* Implement -path.Tavian Barnes2015-11-272-21/+44
|
* Support -d as an alias for -depth.Tavian Barnes2015-11-261-1/+1
|
* Implement -quit.Tavian Barnes2015-11-261-0/+10
|
* Don't call fstatat() unless actually necessary in fill_statbuf().Tavian Barnes2015-11-261-2/+6
|
* Optimize -maxdepth in -depth mode.Tavian Barnes2015-09-264-17/+36
|
* Don't call stat() until absolutely necessary.Tavian Barnes2015-09-262-7/+25
| | | | | This way we only call stat() if we're actually pretty-printing the path, potentially saving lots of calls on paths that don't get printed.
* bftw() interface improvements:Tavian Barnes2015-09-265-137/+141
| | | | | | - Use enums instead of ints where it makes sense - Move the file path inside struct BFTW - Expose a fd and relative path for *at() calls
* Use -O3 for release builds.Tavian Barnes2015-09-161-1/+1
|