Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 285 Bytes

find.md

File metadata and controls

15 lines (11 loc) · 285 Bytes

date

// find modified file between 2022-03-22 and 2022-03-24 find / -newermt "2022-03-22" ! -newermt "2022-03-24" -ls 2>/dev/null

writable or readable

find . -writable find . -readable

user or group

find . -user xxx

groups $(whoami)
find . -group xxx