Search Results

Search: Posts Made By: muralikrishna
2,356
Posted By muralikrishna
#!/bin/bash oldtag=nothing while read line ...
#!/bin/bash
oldtag=nothing
while read line
do
newtag=(echo $line|cut -d "," -f4)
if [ $oldtag != $newtag ]; then
echo "-------------------------------------" >> newfile
fi
echo $line >>...
5,501
Posted By muralikrishna
while : do FSUSAGE=$(df -k|grep...
while :
do
FSUSAGE=$(df -k|grep '/sybase'|awk '{print $6}'|tr -d %)
if [ $FSUSAGE -ge 94 ]; then
rm -r /sybase/logs/*
fi
#sleep 2
done

Uncomment sleep command if you need that...
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 02:14 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy