Search found 2 matches

by nomad_cale
2018/03/10 09:18:38
Forum: User Comments
Topic: find command help
Replies: 3
Views: 7691

Re: find command help

Thank you! :)

The next question how can i write before or after the file in the list?
by nomad_cale
2018/03/01 14:35:06
Forum: User Comments
Topic: find command help
Replies: 3
Views: 7691

find command help

Hi Everyone! I need some help with the find command. I'd like to querry pdf files with date and file size in a specific range of date. I have to sum the file size what I get the end of the process. find / -newermt "2018-01-20" \! -newermt "2018-03-01" -type f -iname '*.pdf' -print0 | xargs -0 du -h ...