Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't call stat() until absolutely necessary. | Tavian Barnes | 2015-09-26 | 1 | -6/+24 |
| | | | | | 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 Barnes | 2015-09-26 | 1 | -23/+23 |
| | | | | | | - 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 | ||||
* | Fix -maxdepth handling when -depth is set. | Tavian Barnes | 2015-09-15 | 1 | -1/+1 |
| | | | | Lost some data due to this bug :(. | ||||
* | Implement -delete. | Tavian Barnes | 2015-09-08 | 1 | -1/+24 |
| | | | | Related to #5. | ||||
* | Perform some boolean simplification on the expression tree. | Tavian Barnes | 2015-09-08 | 1 | -52/+133 |
| | | | | And plug some leaks while I'm at it. | ||||
* | Add -depth support. | Tavian Barnes | 2015-09-08 | 1 | -0/+3 |
| | | | | | | | The resulting order is fairly weird, as files are still returned in breadth-first order, but directories are returned in a backwards order based on when their reference counts drop to zero. But it's good enough for -delete support. | ||||
* | Print the root file/directory too. | Tavian Barnes | 2015-09-02 | 1 | -1/+1 |
| | |||||
* | Add -print0 support. | Tavian Barnes | 2015-09-01 | 1 | -10/+43 |
| | |||||
* | Add -mindepth and -maxdepth support. | Tavian Barnes | 2015-08-31 | 1 | -3/+62 |
| | |||||
* | Fix parsing around ")". | Tavian Barnes | 2015-08-31 | 1 | -1/+3 |
| | |||||
* | Fix -o/-or and comma operator. | Tavian Barnes | 2015-08-31 | 1 | -0/+4 |
| | |||||
* | Add -name support. | Tavian Barnes | 2015-08-31 | 1 | -22/+97 |
| | |||||
* | Free the colors. | Tavian Barnes | 2015-08-31 | 1 | -0/+1 |
| | |||||
* | Don't forget to initialize cl->expr. | Tavian Barnes | 2015-08-31 | 1 | -0/+1 |
| | |||||
* | Simplify evaluation function signatures. | Tavian Barnes | 2015-08-31 | 1 | -36/+48 |
| | |||||
* | Add support for -true and -false. | Tavian Barnes | 2015-08-30 | 1 | -11/+22 |
| | |||||
* | Fix -nohidden return value. | Tavian Barnes | 2015-08-30 | 1 | -2/+6 |
| | |||||
* | Add -type support. | Tavian Barnes | 2015-08-30 | 1 | -1/+56 |
| | | | | Fixes #2. | ||||
* | Parse command line expressions properly. | Tavian Barnes | 2015-08-30 | 1 | -61/+492 |
| | |||||
* | Infer the right value for nopenfd, and recover from EMFILE. | Tavian Barnes | 2015-07-27 | 1 | -2/+21 |
| | |||||
* | Recover from errors in diropen(). | Tavian Barnes | 2015-07-25 | 1 | -3/+8 |
| | | | | Fixes #4. | ||||
* | bftw: New struct BFTW type to hold file attributes. | Tavian Barnes | 2015-07-23 | 1 | -4/+3 |
| | | | | | Like nftw()'s struct FTW. level is needed to implement -mindepth/ -maxdepth. | ||||
* | Add initial support for colorized output. | Tavian Barnes | 2015-06-20 | 1 | -15/+36 |
| | |||||
* | bftw: Add flags parameter and BFTW_STAT flag. | Tavian Barnes | 2015-06-18 | 1 | -2/+2 |
| | |||||
* | Add -hidden/-nohidden flags. | Tavian Barnes | 2015-06-18 | 1 | -4/+43 |
| | |||||
* | Implement bftw(). | Tavian Barnes | 2015-06-14 | 1 | -0/+34 |