aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/find.c
AgeCommit message (Expand)Author
2023-10-01Set DIRTREE_SYMFOLLOW when we followed a symlink to this node.Rob Landley
2023-05-03Fix error reporting for find -commands that take an argument butRob Landley
2023-02-26Reorder find help text so match filers that take an argument are mostly inRob Landley
2023-01-20Switch dirtree to set macro bits instead of hardwired numbers.Rob Landley
2023-01-18Fix help text.Rob Landley
2022-09-14Fix spellingAntoni Villalonga
2022-06-29Add same_file() and same_def_ino() convenience functions, plus minor cleanups.Rob Landley
2022-02-07Fix -newerXY and add test.Rob Landley
2021-12-09Add -samefile, collate help text, cleanup, update tests.Rob Landley
2021-09-06Add find -lname -ilname and -d as a synonym for -depth.Rob Landley
2021-05-26Add find -quitRob Landley
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