Re: using bsd commands

2003-12-04 Thread Toni Schmidbauer
On Wed, Dec 03, 2003 at 09:35:13AM +0200, Mmin Maslak wrote:
 How can I list all files in a directory that are 7+ days old? (That is except last 7 
 days) 
 is that possible with use any command(s) on Freebsd4,x ?

man find(1)

find . -type f -atime +7d -print

hth,
toni
-- 
Kann man etwas nicht verstehen, dann urteile man | toni at stderror dot at 
lieber gar nicht, als dass man verurteile.   | Toni Schmidbauer
-- Rudolf Steiner| 


pgp0.pgp
Description: PGP signature


using bsd commands

2003-12-03 Thread Yahya Blent
How can I list all files in a directory that are 7+ days old? (That is except last 7 
days) 
is that possible with use any command(s) on Freebsd4,x ?

Thanks
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


using bsd commands

2003-12-03 Thread Mmin Maslak
How can I list all files in a directory that are 7+ days old? (That is except last 7 
days) 
is that possible with use any command(s) on Freebsd4,x ?

Thanks
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


using bsd commands

2003-12-03 Thread Mmin Maslak
 
How can I list all files in a directory that are 7+ days old? (That is except last 7 
days) 
is that possible with use any command(s) on Freebsd4,x ?

Thanks
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: using bsd commands

2003-12-03 Thread Ruben de Groot
On Tue, Dec 02, 2003 at 06:09:23PM +0200, Yahya B?lent typed:
 How can I list all files in a directory that are 7+ days old? (That is except last 7 
 days) 

find . -mtime +7 -maxdepth 1

 is that possible with use any command(s) on Freebsd4,x ?
 
 Thanks 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]