Open source software is an idea whose time has finally come.
October 21, 2007 | In Linux, MySQL, Other Tech | No Comments Open source software is an idea whose time has finally come. For twenty years it has been building momentum in the technical cultures that built the Internet and the World Wide Web. Now it's breaking out into the commercial world, and that's changing all the rules. Are you ready?
and of course many others ….
find html files modified in last 7 days
October 17, 2007 | In Linux, WebTechnology | No Comments#!/bin/csh
#change to working directory
cd /Library/WebServer/Documents/website
#find html files modified in last 7 days in web directory
# pipe output to text file
find . -name “*.html” -mtime -7 > /Users/gare/files_modified7days
#Attach and Email
(cat /Users/gare/files_modified7days.EmailBody.txt; uuencode /Users/gare/files_m
odified7days /Users/gare/files_modified7days.txt ) | mail -b emailaddy2@domain.com
-s “Weekly Web Page Access” emailaddress@domain.com
Find Large Files
October 7, 2007 | In Linux | No Comments$ more findlargefiles.sh
#!/bin/bash
# FindLargeFilesReport
#
# find all files larger than 8mb ; output to home directory
find / -size +8192 > /home/gare/FindLargeFilesReport.txt
Powered by WordPress
RSS Feed - Syndicate this Site
and comments feed



