summaryrefslogtreecommitdiffstats
path: root/tests.sh
Commit message (Collapse)AuthorAgeFilesLines
...
* parse: Ignore -- on the command line.Tavian Barnes2016-10-021-1/+11
| | | | | | | | | | | | | | | | | | 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.
* Allow flags like -L before ',' or ')' as pathnames.Tavian Barnes2016-06-091-1/+16
|
* Implement -fprint and -fprint0.Tavian Barnes2016-06-081-1/+13
|
* Treat '-', ')', and ',' as paths when possible.Tavian Barnes2016-06-081-3/+40
|
* Implement -{exec,ok}{,dir}.Tavian Barnes2016-05-221-1/+21
|
* Implement -size.Tavian Barnes2016-03-121-1/+17
|
* Implement (most of) -newerXY.Tavian Barnes2016-02-271-3/+7
|
* Fix -daystart to not round 0 upwards.Tavian Barnes2016-02-271-1/+9
|
* Implement -user and -group.Tavian Barnes2016-02-141-1/+17
|
* Implement -lname and -ilname.Tavian Barnes2016-02-141-1/+17
|
* Implement -iname and -ipath.Tavian Barnes2016-02-131-1/+9
|
* Fix -name handling when the root has trailing slashes.Tavian Barnes2016-02-131-1/+17
|
* Implement -xtype.Tavian Barnes2016-02-131-1/+17
|
* tests.sh: Don't re-create the same directory structures needlessly.Tavian Barnes2016-02-131-69/+56
|
* Implement -samefile.Tavian Barnes2016-02-101-1/+6
|
* Implement -L/-follow.Tavian Barnes2016-02-091-6/+21
|
* bftw: Don't give up when following a broken symlink.Tavian Barnes2016-02-061-1/+7
|
* Implement -P and -H.Tavian Barnes2016-02-041-1/+19
|
* Implement -links.Tavian Barnes2016-02-041-1/+17
|
* Implement -[ac]?newer.Tavian Barnes2016-02-041-1/+11
|
* Add -gid and -uid support.Tavian Barnes2016-02-021-1/+15
|
* Implement -empty.Tavian Barnes2016-01-301-1/+6
|
* Implement -executable, -readable, and -writable.Tavian Barnes2015-11-281-1/+26
|
* Implement -path.Tavian Barnes2015-11-271-1/+14
|
* Optimize -maxdepth in -depth mode.Tavian Barnes2015-09-261-1/+11
|
* tests.sh: Use a more portable mktemp form.Tavian Barnes2015-09-151-1/+1
|
* Fix -maxdepth handling when -depth is set.Tavian Barnes2015-09-151-2/+14
| | | | Lost some data due to this bug :(.
* Add a basic test suite.Tavian Barnes2015-09-151-0/+58