<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic help regarding bdf output shell script !!!! in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079908#M679367</link>
    <description>Hi,&lt;BR /&gt;I have written a funtion which taken bdf output and put's in a file.&lt;BR /&gt;The idea is to get all areas greater than 80% and echo the same on the system once they have reached 80 % limit. However the script I have written fails with the error.&lt;BR /&gt;&lt;BR /&gt;The script is :-&lt;BR /&gt;&lt;BR /&gt;======================================&lt;BR /&gt;output ()&lt;BR /&gt;{/usr/bin/bdf -l |awk '$0 !~ /^F/' |awk '{print $5"\t" $6}'| sed 's/'%'/''/' &amp;gt;/tmp/bdflist}&lt;BR /&gt;&lt;BR /&gt;panic ()&lt;BR /&gt;{while read percent dir&lt;BR /&gt;do&lt;BR /&gt;if [[ $percent -ge 80 ]]&lt;BR /&gt;then&lt;BR /&gt;echo "File syste Full - `hostname`:$dir is at $percent%"&lt;BR /&gt;fi&lt;BR /&gt;done} &amp;lt; /tmp/bdflist&lt;BR /&gt;output&lt;BR /&gt;panic&lt;BR /&gt;===========================================&lt;BR /&gt;+ awk $0 !~ /^F/&lt;BR /&gt;+ awk {print $5"\t" $6}&lt;BR /&gt;+ sed s/%//&lt;BR /&gt;+ 1&amp;gt; /tmp/bdflist}&lt;BR /&gt;./test[8]: Syntax error at line 9 : `do' is not expected.&lt;BR /&gt;&lt;BR /&gt;Please assist in resolving the same.&lt;BR /&gt;Thanking you in advance</description>
    <pubDate>Fri, 16 Nov 2007 08:56:38 GMT</pubDate>
    <dc:creator>Pravin Salgaonkar</dc:creator>
    <dc:date>2007-11-16T08:56:38Z</dc:date>
    <item>
      <title>help regarding bdf output shell script !!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079908#M679367</link>
      <description>Hi,&lt;BR /&gt;I have written a funtion which taken bdf output and put's in a file.&lt;BR /&gt;The idea is to get all areas greater than 80% and echo the same on the system once they have reached 80 % limit. However the script I have written fails with the error.&lt;BR /&gt;&lt;BR /&gt;The script is :-&lt;BR /&gt;&lt;BR /&gt;======================================&lt;BR /&gt;output ()&lt;BR /&gt;{/usr/bin/bdf -l |awk '$0 !~ /^F/' |awk '{print $5"\t" $6}'| sed 's/'%'/''/' &amp;gt;/tmp/bdflist}&lt;BR /&gt;&lt;BR /&gt;panic ()&lt;BR /&gt;{while read percent dir&lt;BR /&gt;do&lt;BR /&gt;if [[ $percent -ge 80 ]]&lt;BR /&gt;then&lt;BR /&gt;echo "File syste Full - `hostname`:$dir is at $percent%"&lt;BR /&gt;fi&lt;BR /&gt;done} &amp;lt; /tmp/bdflist&lt;BR /&gt;output&lt;BR /&gt;panic&lt;BR /&gt;===========================================&lt;BR /&gt;+ awk $0 !~ /^F/&lt;BR /&gt;+ awk {print $5"\t" $6}&lt;BR /&gt;+ sed s/%//&lt;BR /&gt;+ 1&amp;gt; /tmp/bdflist}&lt;BR /&gt;./test[8]: Syntax error at line 9 : `do' is not expected.&lt;BR /&gt;&lt;BR /&gt;Please assist in resolving the same.&lt;BR /&gt;Thanking you in advance</description>
      <pubDate>Fri, 16 Nov 2007 08:56:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079908#M679367</guid>
      <dc:creator>Pravin Salgaonkar</dc:creator>
      <dc:date>2007-11-16T08:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: help regarding bdf output shell script !!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079909#M679368</link>
      <description>here is a simple script i use written in perl. feel free to change it up.&lt;BR /&gt;&lt;BR /&gt;$mailto = 'some@email_addr.com';&lt;BR /&gt;$hostname = `hostname`;&lt;BR /&gt;@mounts = `bdf`; #puts bdf info into seperate array elements&lt;BR /&gt;&lt;BR /&gt;foreach (@mounts){&lt;BR /&gt;        if ($_ =~ /100%|9[0-9]|8[0-9]%/) {&lt;BR /&gt;                $fs = $';&lt;BR /&gt;                chop $fs;&lt;BR /&gt;                $mesg .= "$fs is at $&amp;amp;.\n";&lt;BR /&gt;        }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;if ($mesg) {&lt;BR /&gt;        `echo "$mesg" | mailx -s "$hostname Filesystem Warning" $mailto`;&lt;BR /&gt;        }&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 09:03:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079909#M679368</guid>
      <dc:creator>Court Campbell</dc:creator>
      <dc:date>2007-11-16T09:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: help regarding bdf output shell script !!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079910#M679369</link>
      <description>output ()&lt;BR /&gt;{&lt;BR /&gt;/usr/bin/bdf -l |awk '$0 !~ /^F/' |awk '{print $5"\t" $6}'| sed 's/'%'/''/' &amp;gt;/tmp/bdflist&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;panic ()&lt;BR /&gt;{&lt;BR /&gt;cat /tmp/bdflist | while read percent dir&lt;BR /&gt;do&lt;BR /&gt;if [[ $percent -ge 80 ]]&lt;BR /&gt;then&lt;BR /&gt;echo "File syste Full - `hostname`:$dir is at $percent%"&lt;BR /&gt;fi&lt;BR /&gt;done&lt;BR /&gt;} &lt;BR /&gt;output&lt;BR /&gt;panic</description>
      <pubDate>Fri, 16 Nov 2007 09:03:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079910#M679369</guid>
      <dc:creator>Hasan  Atasoy</dc:creator>
      <dc:date>2007-11-16T09:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: help regarding bdf output shell script !!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079911#M679370</link>
      <description>noticed a mistake&lt;BR /&gt;&lt;BR /&gt;($_ =~ /100%|9[0-9]|8[0-9]%/)&lt;BR /&gt;&lt;BR /&gt;should be&lt;BR /&gt;&lt;BR /&gt;($_ =~ /100%|9[0-9]%|8[0-9]%/)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 09:08:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079911#M679370</guid>
      <dc:creator>Court Campbell</dc:creator>
      <dc:date>2007-11-16T09:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: help regarding bdf output shell script !!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079912#M679371</link>
      <description>Try:&lt;BR /&gt;&lt;BR /&gt;/usr/bin/bdf -l |awk '$0 !~ /^F/' |awk '{print $5"\t" $6}'| sed 's/'%'/''/'|&lt;BR /&gt;while read percent dir&lt;BR /&gt;do&lt;BR /&gt;if [[ $percent -ge 80 ]]&lt;BR /&gt;then&lt;BR /&gt;echo "File syste Full - `hostname`:$dir is at $percent%"&lt;BR /&gt;fi&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Fri, 16 Nov 2007 09:12:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079912#M679371</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-11-16T09:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: help regarding bdf output shell script !!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079913#M679372</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;The simple fix, is to place the curly braces for each function on a line by themselves:&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;output ()&lt;BR /&gt;{&lt;BR /&gt;/usr/bin/bdf -l |awk '$0 !~ /^F/' |awk '{print $5"\t" $6}'| sed 's/'%'/''/' &amp;gt;/tmp/bdflist&lt;BR /&gt;}&lt;BR /&gt;panic ()&lt;BR /&gt;{&lt;BR /&gt;while read percent dir&lt;BR /&gt;do&lt;BR /&gt;if [[ $percent -ge 80 ]]&lt;BR /&gt;then&lt;BR /&gt;echo "File syste Full - `hostname`:$dir is at $percent%"&lt;BR /&gt;fi&lt;BR /&gt;done&lt;BR /&gt;} &amp;lt; /tmp/bdflist&lt;BR /&gt;output&lt;BR /&gt;panic&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;This script could/should be rewritten to eliminate using temporary files (pipe output to the 'read') and should let ONE 'awk' do the work of matching and extracting (consider using 'awk's 'split').&lt;BR /&gt;&lt;BR /&gt;For a simple script like this, in-lining your code like Geoff suggested is probably a more-readable approach.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 09:38:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079913#M679372</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-11-16T09:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: help regarding bdf output shell script !!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079914#M679373</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;include a shell interpreter and a few newlines:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;output ()&lt;BR /&gt;{&lt;BR /&gt;/usr/bin/bdf -l |awk '$0 !~ /^F/' |awk '{print $5"\t" $6}'| sed 's/'%'/''/' &amp;gt;/tm&lt;BR /&gt;p/bdflist&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;panic ()&lt;BR /&gt;{&lt;BR /&gt;while read percent dir&lt;BR /&gt;do&lt;BR /&gt;if [[ $percent -ge 80 ]]&lt;BR /&gt;then&lt;BR /&gt;echo "File syste Full - `hostname`:$dir is at $percent%"&lt;BR /&gt;fi&lt;BR /&gt;done  &amp;lt; /tmp/bdflist&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;output&lt;BR /&gt;panic&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;John K.</description>
      <pubDate>Fri, 16 Nov 2007 09:43:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079914#M679373</guid>
      <dc:creator>john korterman</dc:creator>
      <dc:date>2007-11-16T09:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: help regarding bdf output shell script !!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079915#M679374</link>
      <description>The latest version of Bill Hassell's bdfmegs shell script includes a '-P &lt;PCT&gt;' option to suppress output for filesystems with utilization &amp;lt;= pct.  You can grab it from this thread:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1124262" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1124262&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;PCS&lt;/PCT&gt;</description>
      <pubDate>Fri, 16 Nov 2007 10:54:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079915#M679374</guid>
      <dc:creator>spex</dc:creator>
      <dc:date>2007-11-16T10:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: help regarding bdf output shell script !!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079916#M679375</link>
      <description>One of the problems with bdf is that it automatically wraps a line if the source disk name is too long and this messes up all the numbers. My bdfmegs script can be run with any headers and show just the problem mountpoints. You can select the maximum percentage:&lt;BR /&gt; &lt;BR /&gt;bdfmegs -qP 90&lt;BR /&gt; &lt;BR /&gt;Only the mountpoints that are greater than or equal to 90% full will be shown.</description>
      <pubDate>Fri, 16 Nov 2007 11:36:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079916#M679375</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2007-11-16T11:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: help regarding bdf output shell script !!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079917#M679376</link>
      <description>Clarification: bdfmegs always shows each mountpoint on a single line making it ideal for scripting. I have attached the script here.</description>
      <pubDate>Fri, 16 Nov 2007 12:26:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079917#M679376</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2007-11-16T12:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: help regarding bdf output shell script !!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079918#M679377</link>
      <description>Sorry, attachments are not working in the forums today, get your copy from:&lt;BR /&gt; &lt;BR /&gt; &lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1124262" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1124262&lt;/A&gt;</description>
      <pubDate>Fri, 16 Nov 2007 12:30:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079918#M679377</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2007-11-16T12:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: help regarding bdf output shell script !!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079919#M679378</link>
      <description>I hve used Bill'd bdfmegs quite successfully.&lt;BR /&gt;Here is one we have in production on all machines. It runs on Monday and Friday and looks for 80+% full as well as chack one particular vg.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;-dl&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;#############################################################################&lt;BR /&gt;#   12/24/01    dlamar      Scan % full for lvols                           #&lt;BR /&gt;#               If over the threshold email sysadm                          #&lt;BR /&gt;#   08/21/02    dlamar      Changed MAIL_LIST                               #&lt;BR /&gt;#   12/18/02    dlamar      Added status of job home to daily report.       #&lt;BR /&gt;#   12/26/02    dlamar      Cleaned up the rm of .txt and .rpt.             #&lt;BR /&gt;#   06/04/2003  dlamar      Added logic to ignore cdrom.                    #&lt;BR /&gt;#   10/08/2003  rmark       Corrected logic to check jobprod                #&lt;BR /&gt;#                                                                           #&lt;BR /&gt;#############################################################################&lt;BR /&gt;SCRIPT_HOME="/usr/local/bin/systems"&lt;BR /&gt;MAIL_LIST="your_email_address@somewhere.com"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if [ -f $SCRIPT_HOME/percent_full.txt ]&lt;BR /&gt;then&lt;BR /&gt;    rm $SCRIPT_HOME/percent_full.txt&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;if [ -f $SCRIPT_HOME/percent_full.rpt ]&lt;BR /&gt;then&lt;BR /&gt;    rm $SCRIPT_HOME/percent_full.rpt&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;echo "\t\t$(hostname)\tSYSTEM/JOB\tDISK\tSTATUS\tREPORT\t`date +%m/%d/%y`\n" &amp;gt; $SCRIPT_HOME/percent_full.rpt&lt;BR /&gt;bdf |while read diski&lt;BR /&gt;do&lt;BR /&gt;dper=`echo $diski | awk -F" " '{printf "%d\n", $5}'`&lt;BR /&gt;if [ $dper -gt 80 ]&lt;BR /&gt;then&lt;BR /&gt;    dmount="`echo $diski |awk '{printf "%s\n", $6}'`"&lt;BR /&gt;    if ( test "$dmount" != "/cdrom" )&lt;BR /&gt;    then&lt;BR /&gt;    echo "\t\t\t\t$dmount\t\t$dper% \n" &amp;gt;&amp;gt; /$SCRIPT_HOME/percent_full.txt&lt;BR /&gt;    fi&lt;BR /&gt;&lt;BR /&gt;fi&lt;BR /&gt;done&lt;BR /&gt;bdf | grep 0_40 | cut -c48-49 | sed '1d' | read job_percent&lt;BR /&gt;&lt;BR /&gt;if [ $job_percent -gt 80 ]&lt;BR /&gt;then&lt;BR /&gt;    bdf | grep 0_40 | cut -c48-66 | sed '1d' | read jobdir&lt;BR /&gt;    echo "\t\t\t\t/jobprod\t\t$jobdir \n" &amp;gt;&amp;gt; /$SCRIPT_HOME/percent_full.txt&lt;BR /&gt;&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;if [ -f $SCRIPT_HOME/percent_full.txt ]&lt;BR /&gt;then&lt;BR /&gt;cat /$SCRIPT_HOME/percent_full.txt &amp;gt;&amp;gt; /$SCRIPT_HOME/percent_full.rpt&lt;BR /&gt;ux2dos $SCRIPT_HOME/percent_full.rpt | uuencode Lvols_Nearing_full.txt | mailx -m -s "JOBPROD Home &amp;amp; Lvols Over 80% Full on $(hostname)" $MAIL_LIST&lt;BR /&gt;fi&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 13:24:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079919#M679378</guid>
      <dc:creator>Dave La Mar</dc:creator>
      <dc:date>2007-11-16T13:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: help regarding bdf output shell script !!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079920#M679379</link>
      <description>&lt;!--!*#--&gt;Here's a wrapper script I've written around Bill's bdfmegs.sh:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;&lt;BR /&gt;typeset -i MAXPCT=95&lt;BR /&gt;typeset -i TIMEOUT=1    # number of days to retain LOCKFILE&lt;BR /&gt;BDFMEGS=/root/scripts/util/bdfmegs.sh&lt;BR /&gt;TEMPFILE=/tmp/check_filesystem_usage.${$}.tmp&lt;BR /&gt;LOCKFILE=/tmp/check_filesystem_usage.lck&lt;BR /&gt;&lt;BR /&gt;# rm LOCKFILE if mtime &amp;gt; ${TIMEOUT}, so that duplicate reports will be generated, on occasion&lt;BR /&gt;find ${LOCKFILE} -type f -mtime +${TIMEOUT} -print | xargs rm -f 2&amp;gt; /dev/null&lt;BR /&gt;[ ! -f ${LOCKFILE} ] &amp;amp;&amp;amp; touch ${LOCKFILE}&lt;BR /&gt;&lt;BR /&gt;trap "[ -f ${TEMPFILE} ] &amp;amp;&amp;amp; rm -f ${TEMPFILE}" 0 1 2 3 15&lt;BR /&gt;${BDFMEGS} -qglP ${MAXPCT} | grep -v '^$' &amp;gt; ${TEMPFILE}&lt;BR /&gt;&lt;BR /&gt;if [ -s ${TEMPFILE} ]&lt;BR /&gt;then&lt;BR /&gt;    $(grep -q -v -f ${LOCKFILE} ${TEMPFILE}) &amp;amp;&amp;amp; \&lt;BR /&gt;{        grep -v -f ${LOCKFILE} ${TEMPFILE} &amp;gt;&amp;gt; ${LOCKFILE}&lt;BR /&gt;    mailx -m -s "WARNING! FILESYSTEM(S) OVER ${MAXPCT}% FULL!" root &amp;lt;&amp;lt; EOF&lt;BR /&gt;File-System           Gbytes    Used   Avail %Used Mounted on&lt;BR /&gt;$(cat ${TEMPFILE})&lt;BR /&gt;&lt;BR /&gt;Remember to delete ${LOCKFILE} after freeing up space!&lt;BR /&gt;EOF&lt;BR /&gt;}&lt;BR /&gt;# exit with rc of 1 if any filesystems with utilization &amp;gt; ${MAXPCT} were returned&lt;BR /&gt;exit 1&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;# otherwise, exit with rc of 0&lt;BR /&gt;exit 0&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 13:41:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079920#M679379</guid>
      <dc:creator>spex</dc:creator>
      <dc:date>2007-11-16T13:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: help regarding bdf output shell script !!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079921#M679380</link>
      <description>thanks</description>
      <pubDate>Thu, 18 Feb 2010 10:11:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-regarding-bdf-output-shell-script/m-p/5079921#M679380</guid>
      <dc:creator>Pravin Salgaonkar</dc:creator>
      <dc:date>2010-02-18T10:11:22Z</dc:date>
    </item>
  </channel>
</rss>

