Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. find /var/www/html/dir/ -mtime -28 | grep '.php'
  2.  
  3. $ find /var/www/html/dir/ -type f -name "*.php" -newermt 2011-02-08 ! -newermt 2011-02-09
  4.  
  5. touch -t 201103070000 start.tmp
  6. touch -t 201103080000 stop.tmp
  7. find . -newer start.tmp ! -newer stop.tmp -print
  8. rm start.tmp stop.tmp
  9.  
  10. find /var/www/html/dir/ -mtime 27 | grep '.php'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement