Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement -printf %Ak, %Ck, and %Tk | Tavian Barnes | 2017-03-11 | 1 | -1/+6 |
| | |||||
* | tests: Print the count of passing and failing tests | Tavian Barnes | 2017-02-11 | 1 | -13/+14 |
| | |||||
* | Add some tests for the operators themselves | Tavian Barnes | 2017-02-11 | 1 | -10/+50 |
| | |||||
* | Add tests for bfs's flexible command line parsing | Tavian Barnes | 2017-02-10 | 1 | -0/+25 |
| | |||||
* | tests: Don't require bash associative arrays | Tavian Barnes | 2017-02-10 | 1 | -22/+11 |
| | | | | That's a bash 4 feature, while macOS is stuck on bash 3. | ||||
* | bftw: Make the nameoff of "///" point to "/" | Tavian Barnes | 2017-02-09 | 1 | -1/+2 |
| | | | | This simplifies a few things such as -name handling for ///. | ||||
* | Give the test cases human-readable names | Tavian Barnes | 2017-02-09 | 1 | -312/+433 |
| | |||||
* | Don't close stdin for -ok or -okdir | Tavian Barnes | 2017-02-09 | 1 | -6/+7 |
| | | | | Turns out it violates POSIX, even though GNU find does it. | ||||
* | Add support for -x?type with multiple types | Tavian Barnes | 2017-02-08 | 1 | -1/+11 |
| | | | | This functionality is already part of GNU findutils git. | ||||
* | Fix a memory leak parsing -printf | Tavian Barnes | 2017-02-06 | 1 | -1/+7 |
| | |||||
* | tests.sh: Set the umask before creating the test trees | Tavian Barnes | 2017-02-06 | 1 | -0/+1 |
| | |||||
* | Make -quit happen immediately, not at the end of the current expression | Tavian Barnes | 2017-02-05 | 1 | -1/+11 |
| | |||||
* | bftw: Compute nameoff correctly for the root in BFTW_DEPTH mode | Tavian Barnes | 2017-02-05 | 1 | -1/+5 |
| | |||||
* | Implement -printf/-fprintf | Tavian Barnes | 2017-02-05 | 1 | -9/+42 |
| | | | | | Based on a patch by Fangrui Song <i@maskray.me>. Closes #16. | ||||
* | Implement -nouser and -nogroup | Tavian Barnes | 2017-02-04 | 1 | -1/+18 |
| | |||||
* | tests: Add a test for -inum | Tavian Barnes | 2017-01-03 | 1 | -1/+8 |
| | |||||
* | tests: Add tests for -quit | Tavian Barnes | 2017-01-02 | 1 | -1/+21 |
| | |||||
* | Set _FILE_OFFSET_BITS to 64 | Tavian Barnes | 2016-12-21 | 1 | -1/+6 |
| | | | | | With the new support for -size n[TP], this is needed to avoid overflow on 32-bit platforms. | ||||
* | Implement -mnewer | Tavian Barnes | 2016-12-20 | 1 | -1/+11 |
| | |||||
* | Support -[gu]id NAME like BSD find | Tavian Barnes | 2016-12-20 | 1 | -1/+11 |
| | |||||
* | Implement BSD find's -depth N | Tavian Barnes | 2016-12-18 | 1 | -1/+31 |
| | |||||
* | tests: Allow limiting the testsuite to POSIX, BSD, GNU, and bfs-specific ↵ | Tavian Barnes | 2016-12-18 | 1 | -11/+128 |
| | | | | features | ||||
* | tests.sh: Let the bfs binary be specified on the command line | Tavian Barnes | 2016-12-18 | 1 | -21/+35 |
| | |||||
* | Implement -regex, -iregex, and -regextype/-E | Tavian Barnes | 2016-12-18 | 1 | -1/+29 |
| | |||||
* | tests: Fix failure when /tmp is a symlink. | Tavian Barnes | 2016-12-08 | 1 | -1/+4 |
| | |||||
* | tests: Don't use install -D | Tavian Barnes | 2016-12-08 | 1 | -7/+14 |
| | | | | -D is a GNU-ism that doesn't work on BSD or macOS. | ||||
* | tests: Don't check -size for directories | Tavian Barnes | 2016-12-05 | 1 | -3/+4 |
| | |||||
* | tests: Don't check -links for directories | Tavian Barnes | 2016-12-05 | 1 | -3/+3 |
| | |||||
* | Allow // to be different from / | Tavian Barnes | 2016-11-24 | 1 | -3/+2 |
| | | | | | | POSIX says that // may be resolved in an implementation-defined way (generally, to access network shares). So don't use it in tests, and don't canonicalize it to '/' in -execdir. | ||||
* | tests: Make sure the temporary directory is owned by the current user/group | Tavian Barnes | 2016-11-22 | 1 | -0/+1 |
| | | | | | BSDs apparently prefer to create new files/directories with the same group as the parent directory, rather than the current primary group. | ||||
* | tests: Mkae LC_ALL=C apply to the whole pipeline when sorting. | Tavian Barnes | 2016-11-22 | 1 | -1/+4 |
| | |||||
* | Support -perm +MODE for symbolic modes. | Tavian Barnes | 2016-11-21 | 1 | -1/+1 |
| | | | | Only things like -perm +777 are disallowed by GNU find. | ||||
* | Fix -execdir for / | Tavian Barnes | 2016-11-21 | 1 | -1/+15 |
| | |||||
* | tests: Don't rely on the system 'find' for the expected output. | Tavian Barnes | 2016-11-21 | 1 | -142/+211 |
| | |||||
* | Don't try to -delete the current directory. | Tavian Barnes | 2016-11-13 | 1 | -1/+6 |
| | |||||
* | bftw: Keep trailing slashes on the root in BFTW_DEPTH mode. | Tavian Barnes | 2016-11-13 | 1 | -1/+5 |
| | |||||
* | Redirect stdin from /dev/null for -ok and -okdir. | Tavian Barnes | 2016-11-13 | 1 | -1/+11 |
| | |||||
* | Implement -perm. | Tavian Barnes | 2016-10-29 | 1 | -4/+47 |
| | |||||
* | tests.sh: Give some feedback while running. | Tavian Barnes | 2016-10-24 | 1 | -1/+15 |
| | |||||
* | tests: Be more careful not to invoke remove-siblings.sh $scratch. | Tavian Barnes | 2016-10-24 | 1 | -1/+1 |
| | |||||
* | Implement -ignore_readdir_race. | Tavian Barnes | 2016-10-24 | 1 | -8/+22 |
| | |||||
* | parse: Ignore -- on the command line. | Tavian Barnes | 2016-10-02 | 1 | -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 Barnes | 2016-06-09 | 1 | -1/+16 |
| | |||||
* | Implement -fprint and -fprint0. | Tavian Barnes | 2016-06-08 | 1 | -1/+13 |
| | |||||
* | Treat '-', ')', and ',' as paths when possible. | Tavian Barnes | 2016-06-08 | 1 | -3/+40 |
| | |||||
* | Implement -{exec,ok}{,dir}. | Tavian Barnes | 2016-05-22 | 1 | -1/+21 |
| | |||||
* | Implement -size. | Tavian Barnes | 2016-03-12 | 1 | -1/+17 |
| | |||||
* | Implement (most of) -newerXY. | Tavian Barnes | 2016-02-27 | 1 | -3/+7 |
| | |||||
* | Fix -daystart to not round 0 upwards. | Tavian Barnes | 2016-02-27 | 1 | -1/+9 |
| | |||||
* | Implement -user and -group. | Tavian Barnes | 2016-02-14 | 1 | -1/+17 |
| |