Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | bftw: Make bftw_flags more similar to fts() options. | Tavian Barnes | 2016-11-21 | 4 | -25/+30 | |
| | ||||||
* | Support -perm +MODE for symbolic modes. | Tavian Barnes | 2016-11-21 | 3 | -5/+1 | |
| | | | | Only things like -perm +777 are disallowed by GNU find. | |||||
* | Fix -execdir for / | Tavian Barnes | 2016-11-21 | 5 | -6/+30 | |
| | ||||||
* | Fix -execdir for root paths with no slashes. | Tavian Barnes | 2016-11-21 | 2 | -2/+6 | |
| | ||||||
* | tests: Don't rely on the system 'find' for the expected output. | Tavian Barnes | 2016-11-21 | 88 | -142/+1011 | |
| | ||||||
* | Check for readdir() errors everywhere. | Tavian Barnes | 2016-11-14 | 4 | -18/+34 | |
| | ||||||
* | Don't try to -delete the current directory. | Tavian Barnes | 2016-11-13 | 2 | -1/+11 | |
| | ||||||
* | bftw: Keep trailing slashes on the root in BFTW_DEPTH mode. | Tavian Barnes | 2016-11-13 | 2 | -7/+21 | |
| | ||||||
* | Redirect stdin from /dev/null for -ok and -okdir. | Tavian Barnes | 2016-11-13 | 6 | -34/+113 | |
| | ||||||
* | parse: Don't print warnings if standard in is not a terminal. | Tavian Barnes | 2016-11-13 | 1 | -1/+1 | |
| | ||||||
* | bftw: Don't fail just because we couldn't open/read a directory. | Tavian Barnes | 2016-11-03 | 1 | -3/+3 | |
| | | | | | | | With BFTW_RECOVER set, we're not supposed to fail just because a single measly directory couldn't be handled. But using state.error as scratch space made us fail in this case. The end result is that #7 resurfaced, so fix it again. | |||||
* | Bump the version to 0.840.84 | Tavian Barnes | 2016-10-29 | 3 | -2/+18 | |
| | ||||||
* | Implement -perm. | Tavian Barnes | 2016-10-29 | 4 | -13/+366 | |
| | ||||||
* | parse: Use free_expr(expr), not free(expr). | Tavian Barnes | 2016-10-24 | 1 | -7/+7 | |
| | ||||||
* | 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 | 6 | -31/+82 | |
| | ||||||
* | Check for POSIX timers before using them. | Tavian Barnes | 2016-10-24 | 2 | -7/+48 | |
| | ||||||
* | Account for non-standard struct stat on macOS. | Tavian Barnes | 2016-10-22 | 1 | -0/+7 | |
| | ||||||
* | main: IN is read, OUT is write. | Tavian Barnes | 2016-10-18 | 1 | -3/+3 | |
| | | | | Oops :/ | |||||
* | main: Make sure that STD{IN,OUT,ERR}_FILENO are open. | Tavian Barnes | 2016-10-16 | 1 | -0/+59 | |
| | | | | | Otherwise invocations like bfs >&- may do weird things like try to write to directory descriptors. | |||||
* | Check for errors in -print and friends. | Tavian Barnes | 2016-10-16 | 3 | -29/+81 | |
| | ||||||
* | bftw: Add support for some exotic file types, where available. | Tavian Barnes | 2016-10-02 | 5 | -2/+96 | |
| | ||||||
* | parse: Ignore -- on the command line. | Tavian Barnes | 2016-10-02 | 2 | -6/+32 | |
| | | | | | | | | | | | | | | | | | | 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. | |||||
* | bftw: Handle errors from readdir(). | Tavian Barnes | 2016-10-02 | 1 | -25/+66 | |
| | ||||||
* | bftw: Fix do/to typo in a comment. | Tavian Barnes | 2016-09-10 | 1 | -1/+1 | |
| | ||||||
* | Give case a little bit of weight in the typo metric. | Tavian Barnes | 2016-09-09 | 1 | -110/+108 | |
| | ||||||
* | Give suggestions for operators too. | Tavian Barnes | 2016-09-06 | 1 | -19/+47 | |
| | ||||||
* | Use the two-star list augmenting method. | Tavian Barnes | 2016-09-05 | 1 | -8/+4 | |
| | ||||||
* | Bump the version to 0.82.0.82 | Tavian Barnes | 2016-09-04 | 3 | -4/+4 | |
| | ||||||
* | Require -{min,max}depth argument to be positive. | Tavian Barnes | 2016-09-04 | 1 | -1/+1 | |
| | ||||||
* | Implement typo detection for literals. | Tavian Barnes | 2016-09-04 | 4 | -2/+212 | |
| | ||||||
* | Use a table-driven parser for literals. | Tavian Barnes | 2016-09-04 | 1 | -291/+281 | |
| | ||||||
* | bftw: Initialize typeflag to BFTW_UNKNOWN. | Tavian Barnes | 2016-08-24 | 1 | -2/+1 | |
| | | | | It was totally broken on filesystems that spit out DT_UNKNOWN. | |||||
* | Implement -f PATH from BSD find. | Tavian Barnes | 2016-07-13 | 2 | -1/+29 | |
| | ||||||
* | Use a linked list to store the root paths. | Tavian Barnes | 2016-07-13 | 3 | -29/+52 | |
| | ||||||
* | Implement -D rates. | Tavian Barnes | 2016-06-28 | 4 | -16/+93 | |
| | ||||||
* | Use underscores. | Tavian Barnes | 2016-06-19 | 3 | -44/+44 | |
| | ||||||
* | RELEASES.md: Be less verbose about optimization levels. | Tavian Barnes | 2016-06-11 | 1 | -34/+7 | |
| | ||||||
* | Re-work optimization levels. | Tavian Barnes | 2016-06-09 | 3 | -21/+55 | |
| | | | | | | -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 Barnes | 2016-06-09 | 2 | -18/+50 | |
| | ||||||
* | Add release notes. | Tavian Barnes | 2016-06-09 | 1 | -0/+85 | |
| | ||||||
* | Implement -fprint and -fprint0. | Tavian Barnes | 2016-06-08 | 4 | -9/+123 | |
| | ||||||
* | Optimize ( ! x , y ) <==> ( x , y ) | Tavian Barnes | 2016-06-08 | 1 | -2/+14 | |
| | ||||||
* | Treat '-', ')', and ',' as paths when possible. | Tavian Barnes | 2016-06-08 | 2 | -37/+102 | |
| | ||||||
* | Remove redundant pure expressions from the top level. | Tavian Barnes | 2016-06-07 | 1 | -5/+28 | |
| | ||||||
* | Optimize using De Morgan's laws. | Tavian Barnes | 2016-06-07 | 1 | -0/+61 | |
| | ||||||
* | Warn on things like "-not -maxdepth 1". | Tavian Barnes | 2016-06-07 | 1 | -0/+6 | |
| | ||||||
* | Move purity optimizations to -O2. | Tavian Barnes | 2016-06-07 | 1 | -10/+12 | |
| | ||||||
* | Implement -D opt. | Tavian Barnes | 2016-06-07 | 3 | -29/+88 | |
| |