Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. sh-3.2$ echo x >> /tmp/necoutput1.txt
  2. sh-3.2$ find /tmp/ -maxdepth 1 -iname "necoutput*.txt" -mmin -2
  3. /tmp//necoutput1.txt
  4. sh-3.2$ find /tmp/ -maxdepth 1 -iname "necoutput*.txt" -mtime -2m
  5. /tmp//necoutput1.txt
  6. sh-3.2$ sleep 200
  7. sh-3.2$ find /tmp/ -maxdepth 1 -iname "necoutput*.txt" -mmin -2
  8. sh-3.2$ find /tmp/ -maxdepth 1 -iname "necoutput*.txt" -mtime -2m
  9. /tmp//necoutput1.txt
  10. sh-3.2$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement