Thread
:
how can I use "find" command to locate new created file in a certain directory??
View Single Post
#
4
(
permalink
)
01-16-2008, 10:34 AM
Aldo of Pignotti
Posts: n/a
Re: how can I use "find" command to locate new created file in a certain directory??
#ls -lR > afile
then, sometime later, in the same directory:
#ls -lR > bfile
#diff afile bfile
Aldo of Pignotti