The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Operating Systems > SUN Solaris
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #11 (permalink)  
Old 11-13-2007
joydeep joydeep is offline
Registered User
 

Join Date: Nov 2007
Posts: 13
You can use this command :

#for file in /tmp/var.out; do ls -lrt $file; done --> it will show you the timestamp.

If the file /tmp/var.out contain only file name, then use

#for file in /tmp/var.out; do find / -t f -name $file -print; done
Reply With Quote