![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Background execution of a script | Cameron | Shell Programming and Scripting | 2 | 10-03-2007 06:50 AM |
| Pb with script execution and variables | Cecile | AIX | 1 | 09-15-2006 10:54 AM |
| pb with script execution | Cecile | UNIX for Dummies Questions & Answers | 3 | 09-14-2006 11:37 AM |
| How to create file execution in KSH shell | heru_90 | Shell Programming and Scripting | 4 | 06-23-2006 01:43 PM |
| execution of shell script | malaymaru | Shell Programming and Scripting | 5 | 06-13-2005 10:49 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
1- create a simple Script ver_proc.sh (in a apropiate directory example /usr/local/scripts/varios or /usr/local/sbin/varios)
#!/bin/ksh if [ $# -ne 1 ] then echo "Usage: $0 <proc_name>" fi PROC_NAME=$1 DAY=`date +"%Y%m%d"` TIME=`date +"%Y/%m/%d %H:%M"` CURR_SCRIPT=$0 if [ ! -d /var/log/$DAY ] then mkdir /var/log/$DAY chmod 0755 /var/log/$DAY fi OUT=/var/log/$DAY/ps_$DAY.txt if [ `ps -ef |grep $PROC_NAME |grep -v $CURR_SCRIPT |grep -v grep |wc -l ` -eq 1 ] then echo "$TIME `/usr/ucb/ps vax |grep $PROC_NAME |grep -v $CURR_SCRIPT |grep -v grep`" >> $OUT else ps -ef |grep $PROC_NAME |grep -v $CURR_SCRIPT |grep -v grep | while read linea do TIME=`date +"%Y/%m/%d %H:%M"` echo "$TIME $linea" >> $OUT done fi exit 0 2- chmod 0755 /usr/local/scripts/varios/ver_proc.sh 3- create a cron Job. EDITOR=/usr/bin/vi ; export EDITOR cron -e # add the following line 00,30 * * * * [ -x /usr/local/scripts/varios/ver_proc.sh ] \ /usr/local/scripts/varios/ver_proc.sh <proc_name> 4- Modify the script at your flavor Last edited by hugo_perez; 04-17-2002 at 11:59 AM.. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|