aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/find.c
AgeCommit message (Expand)Author
2021-02-14Add find -executableRob Landley
2020-12-05Fix find empty argument handling and add test.Rob Landley
2020-07-30Don't need "match", just test *t.Rob Landley
2020-07-30find: support -type a,b,c.Elliott Hughes
2020-04-13Add unescape2(), migrate some unescape() users over.Rob Landley
2020-01-11find.c: don't assume time_t is the same as longRich Felker
2019-10-12Don't need the second variable, and put the comment back.Rob Landley
2019-10-12Fix argless find segfault.Denys Nykula
2019-09-16Ahem, -newerXY is in _find_, not in _file_.Rob Landley
2019-09-04find: support -printf \0 octal escapes and \c.Elliott Hughes
2019-09-04DIRTREE_STATLESS doesn't have to test 3 stat fields, it sets a flagRob Landley
2019-08-30find: fix -name corner case.Elliott Hughes
2019-08-28Fix find(1) after c26870dab346.Elliott Hughes
2019-08-09find: fix dangling symlink behavior.Elliott Hughes
2019-06-11find: add -true/-false.Elliott Hughes
2019-06-07Implement stat %C and find %Z.Elliott Hughes
2019-05-29Teach find -printf about %.Ns patterns, tweak help text, add tests.Rob Landley
2019-05-25find: add -printf support.Elliott Hughes
2019-03-25find: fix inverted -exec exit statusVidar Holen
2019-03-10find: minor whitespace cleanup.Elliott Hughes
2019-03-10find: improve -context behavior on failure.Elliott Hughes
2019-03-09find: add -context.Elliott Hughes
2019-02-13find: fix -path/-ipath and add -wholename/-iwholename synonyms.Elliott Hughes
2018-10-27Zach Van Rijn asked for "find -empty".Rob Landley
2018-08-19Comment tweak.Rob Landley
2017-11-21Make find -exec + obey ARG_MAX just like xargs.Elliott Hughes
2016-12-20Add units for -atime and friends. (Also legacy -amin alias, but not in help textRob Landley
2016-08-18Change xgetpwnamid/xgetgrnamid to xgetuid/xgetgid returning the id numberRob Landley
2016-08-04Make xopen() skip stdin/stdout/stderr, add xopen_stdio() if you want stdout,Rob Landley
2016-07-12Implement NOP find -noleafRob Landley
2016-05-20Add bufgetgrgid()Rob Landley
2016-04-25Fix find bug reported by Tom Marshall, add test for it, and while we're at itRob Landley
2016-03-07Cleanup pass on the dirtree infrastructure, in preparation for making rm -rRob Landley
2016-02-05Another fix from Josh Gao to avoid a null pointer dereference, andRob Landley
2016-02-05Fix segfault when `find -iname` gets no argument.Josh Gao
2016-02-01Add find -deleteRob Landley
2016-01-14Make "find -execdir toys echo {} +" batch correctly and show topdir results.Rob Landley
2016-01-05Work towards making "find . -execdir echo {} + -execdir ls {} +" work,Rob Landley
2016-01-02Fix find --prune.Rob Landley
2016-01-02Fix "find . -exec echo {}" segfault, and stop measuring environment space,Rob Landley
2015-12-06Rename dirtree->data to dirfd, and don't store symlink length in it.Rob Landley
2015-12-06Enable matching any perm bits.Gilad Arnold
2015-11-19Fix find -perm.Elliott Hughes
2015-09-12Fix a find segfault.Rob Landley
2015-09-07Remove prompt argument from yesno(), caller can fprintf(stderr, "blah") itself.Rob Landley
2015-08-01Move strlower() from find to lib.Rob Landley
2015-07-10find: add -inum optionGreg Hackmann
2015-05-10Cleanups of dirtree_start() calls. (Don't need to feed in flag values, justRob Landley
2015-05-09Add DIRTREE_SHUTUP to disable dirtree warnings if file vanishes out fromRob Landley
2015-03-21Another bug from David Halls: find -exec wasn't consuming its argument when i...Rob Landley