1753716 Members
4366 Online
108799 Solutions
New Discussion юеВ

Script on bdf

 
sudheerch
Frequent Advisor

Script on bdf

Hi All,
I need one script to grep the output of #bdf which %used is more than 80%
3 REPLIES 3
R.K. #
Honored Contributor

Re: Script on bdf

Hi..

Search "bdfmesg" script in itrc:

See this thread.
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1048509

Don't fix what ain't broke
Laurent Menase
Honored Contributor

Re: Script on bdf

bdf | while read a b c d e f
do
g=${e%\%}
if [[ $g > 80 ]]
then
echo $f $a $e
fi
done
James R. Ferguson
Acclaimed Contributor

Re: Script on bdf

Hi:

See Bill Hassell's script called 'diskspace' script attached in his response here:

http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1130400

Regards!

...JRF...