Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 275 Bytes

searching_for_files.md

File metadata and controls

11 lines (8 loc) · 275 Bytes

Find files that were modified on a specific date, in this case, on the 7th June 2017:

find . -type f -newermt 2017-06-07 ! -newermt 2017-06-08

Find directories that match a pattern:

find /media/ben/Data/ -type d -name "VCF_quality_stats_distributions"