Tool
Need to keep your Linux based IDM log files for troubleshooting?
This script zips your log files up, keeping a zip file for each day.
#!/bin/bash cd $2 if [ -e $1 ] ; then strFile=`date +%d%m%y` myHost=`hostname` strFile=$strFile"-"$myHost".zip" # echo $strFile strTime=`date +%H%M%S` # echo $strTime mv $1 $strTime$1 zip $strFile -q -9 -o -m $strTime$1 else echo "file not found" fi
Simply call the script passing the name of the log file you wish to archive and the path to your log files as command line parameters.
You can run this in your crontab, calling it every minute (or whatever period suites you) When the log file rolls over the _1.log file will be renamed with a time stamp and added to todays zip file. If the log file has not yet rolled the script just exits.
Example:
log_archiver.sh Driver1_1.log /IDMLOGS/
Enjoy!
Cheers
Jim
Disclaimer: As with everything else at Cool Solutions, this content is definitely not supported by Novell (so don't even think of calling Support if you try something and it blows up).
It was contributed by a community member and is published "as is." It seems to have worked for at least one person, and might work for you. But please be sure to test, test, test before you do anything drastic with it.
Related Articles
User Comments
what a great script, so
Submitted by marklamont on 18 June 2008 - 2:38am.
what a great script, so usefull for keeping track of all the driver traffic, so easy to keep these rolled up files in a central location for auditing and legal purposes.
- Be the first to comment! To leave a comment you need to Login or Register
Most excellent, would be
Submitted by wildpitch on 26 June 2008 - 5:01am.
Most excellent, would be great if this replaced invalid windows chars in the renamed log name.
- Be the first to comment! To leave a comment you need to Login or Register


2