User Tools

Site Tools


sandbox:find

FIND cheatsheet

Here are some useful hints about how to use find in Linux.

Find + chmod

find /path/to/dir/ -type d -exec chmod 0755 {} \;
find /path/to/dir/ -type f -exec chmod 0644 {} \;

Find files edited in specific time frame

find /path/to/dir/ -newermt "2013-01-01 00:00:00" ! -newermt "2013-01-02 00:00:00"

[OR]

touch --date "2018-07-01" /tmp/start
touch --date "2018-08-01" /tmp/end
find /path/to/dir/ -type f -newer /tmp/start -not -newer /tmp/end
sandbox/find.txt · Last modified: 2019/04/25 23:41 by dreiggy

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki