msgbartop
A cronological documentation test project, nothing serious, really!
msgbarbottom

07 May 2007 Find all web pages that reference to www.example.com

find / -name '*html' -print \
  | xargs grep -l 'www.example.com' \
  | less -Opages

Tags: , ,

Posted by

15 Apr 2007 Cronjobb som sletter gamle filer

find /data/folder -type f -uid 400 -atime +2 -exec /bin/rm {} ;
find /data/folder -type d -uid 400 -atime +2 | sort -r | /usr/bin/perl -e 'foreach (<>) {chop; rmdir;

Tags: , , ,

Posted by