find all the files modified less than 10 min

  • msurii
  • Topic Author
  • Offline
  • Premium Member
  • Premium Member
More
15 years 2 months ago #2528 by msurii
untar & uncompress the file using single command
=============================================
gzip -cd XX.tar.gz | tar xfv -

tar & compress the file using single command
=============================================
tar cvf - FILE-LIST | gzip -c > FILE.tar.gz

find . -min +5 -min -10 <== mod before 6 & 9 min ago

find . -mtime +1 <== mod more than 1 day

Please Log in or Create an account to join the conversation.

Time to create page: 0.098 seconds