-
Archives
- July 2010
- May 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- June 2009
- May 2009
- March 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- July 2008
- June 2008
- April 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- April 2007
- March 2007
- February 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
-
Meta
Monthly Archives: October 2007
Open source software is an idea whose time has finally come.
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, … Continue reading
Posted in Linux, MySQL, Other Tech
Leave a comment
find html files modified in last 7 days
#!/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 … Continue reading
Posted in Linux, WebTechnology
Leave a comment
Find Large Files
$ more findlargefiles.sh #!/bin/bash # FindLargeFilesReport # # find all files larger than 8mb ; output to home directory find / -size +8192 > /home/gare/FindLargeFilesReport.txt
Posted in Linux
Leave a comment