Script help needed...
- From: Magnus Andersen <mag.andersen@xxxxxxxxx>
- Date: Wed, 4 Jan 2006 15:04:57 -0500
Hi All,
I'm writing a script that I am going to use to test write data to an nfs
mount. I'm having problem with a variable. The variable R is set inside a
while loop and it is null outside the loop even after it is set.
Here is a code snippet. I've attached the whole script if anyone would like
to look at the whole thing.
if [ ! -f $PIDFILE ]; then
touch $PIDFILE
else
# Read PIDFILE and determine if script is already running.
cat $PIDFILE | while read LINE
do
if [ -z "$LINE" ]; then
break
else
#Get PID from PIDFILE
OLDPID=`echo $LINE | awk '{ print $1 }'`
RUNNING=`ps aux | grep $OLDPID | grep -v grep | wc -l | tr -d '
'`
if [ $RUNNING = 0 ]; then
R=0
else
(( R = $R + 1 ))
echo $R
LOC=`echo $LINE | awk '{ print $2 }'`
fi
fi
done
fi
echo "R = $R"
The last echo is null even after R is set inside the loop and I don't
understand why.
Thanks,
--
Magnus Andersen
Systems Administrator / Oracle DBA
Walker & Associates, Inc.
-- redhat-list mailing list unsubscribe mailto:redhat-list-request@xxxxxxxxxx?subject=unsubscribe https://www.redhat.com/mailman/listinfo/redhat-list
- Follow-Ups:
- RE: Script help needed...
- From: Gavin McDonald
- RE: Script help needed...
- Prev by Date: RE: is this an intruder?
- Next by Date: RE: Script help needed...
- Previous by thread: Unable to do FTP from Fedora Core 3
- Next by thread: RE: Script help needed...
- Index(es):
Relevant Pages
|