The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 05-12-2004
jim mcnamara jim mcnamara is offline Forum Staff  
...@...
  
 

Join Date: Feb 2004
Location: NM
Posts: 5,789
Use touch to change a file data on a temp file in your directory
then use find.


Code:
cat "hi " >  t.tmp
# set the file time to 2 hours ago
touch -t 200405121120  t.tmp 
find /admin//dump -type f  -newer t.tmp -print -exec ls -lt {} \; | pg