<?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 Re: Dam script will not work -     ;^0 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575787#M858397</link>
    <description>Hi Paula:&lt;BR /&gt;&lt;BR /&gt;Judging from the responses (and I admit, I first looked at this post from a syntatic view too!) I can't help but wonder what this says about us! ;-)&lt;BR /&gt;&lt;BR /&gt;Timothy, loops such as those you suggest are detrimental to processors ...&lt;BR /&gt;&lt;BR /&gt;Paula, we can always count on you to provide much needed levity in an otherwise all too serious day!&lt;BR /&gt;&lt;BR /&gt;Regards to all!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
    <pubDate>Wed, 05 Sep 2001 19:18:56 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2001-09-05T19:18:56Z</dc:date>
    <item>
      <title>Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575766#M858376</link>
      <description>Hi to all&lt;BR /&gt;&lt;BR /&gt; I have written a new script but no matter how I try it will not work.&lt;BR /&gt;&lt;BR /&gt;I have set it to 755 and it is owned by me but still refuses to carry out its commands.&lt;BR /&gt;&lt;BR /&gt;Any suggestion or other scripts gratefully received.&lt;BR /&gt;&lt;BR /&gt;---------------- Cut here----------------&lt;BR /&gt;#/bin there done that&lt;BR /&gt;##########################################&lt;BR /&gt;# One for us :-   ;^)  PJFC Sep 2001&lt;BR /&gt;##########################################&lt;BR /&gt;# The next bit&lt;BR /&gt;# Age&lt;BR /&gt;a=`cat /usr/sysadmin | awk ?{print $1}&lt;BR /&gt;if `echo $a != 21`&lt;BR /&gt;then a=21&lt;BR /&gt;fi&lt;BR /&gt;##########################################&lt;BR /&gt;# Sex&lt;BR /&gt;b= `cat /usr/sysadmin | awk ?{print $2}?&lt;BR /&gt;if `echo $b != ?A lot?`&lt;BR /&gt;then b=?Sex god?&lt;BR /&gt;fi&lt;BR /&gt;##########################################&lt;BR /&gt;# Income&lt;BR /&gt;c= `cat /usr/sysadmin | awk ?{print $3}?&lt;BR /&gt;if `echo $c != ?Not Enough?`&lt;BR /&gt;then b= ?current x 3?&lt;BR /&gt;fi&lt;BR /&gt;--------------Cut here-------------------&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Paula&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 18:09:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575766#M858376</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2001-09-05T18:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575767#M858377</link>
      <description>Paula...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Are you missing a quote at the end of&lt;BR /&gt;your a's definition??&lt;BR /&gt;&lt;BR /&gt;b's definition.. c' definition also...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;a=`cat /usr/sysadmin | awk '{print $1}'`&lt;BR /&gt;&lt;BR /&gt;Try with these correct quotes for other variable settings also.&lt;BR /&gt;&lt;BR /&gt;-Sri &lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 18:20:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575767#M858377</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2001-09-05T18:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575768#M858378</link>
      <description>Hmmm... Lemme try it...&lt;BR /&gt;&lt;BR /&gt;#Aged&lt;BR /&gt;a=`cat /usr/sysadmin |awk '{print $1}'`&lt;BR /&gt;if [ $a != 21 ]&lt;BR /&gt;then&lt;BR /&gt;a=21&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;#Sexed&lt;BR /&gt;&lt;BR /&gt;b=`cat /usr/sysadmin|awk '{print $2}'`&lt;BR /&gt;if [ "$b" = "A lot" ]&lt;BR /&gt;then&lt;BR /&gt;b="Sex God"&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;#Incame&lt;BR /&gt;&lt;BR /&gt;c=`cat /usr/sysadmin |awk '{print $3}'`&lt;BR /&gt;if [ "$c" != "Not Enough" ]&lt;BR /&gt;then&lt;BR /&gt;b="current x 3"&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;try this and see if it works?.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Wed, 05 Sep 2001 18:26:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575768#M858378</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2001-09-05T18:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575769#M858379</link>
      <description>Hi Sridhar&lt;BR /&gt;&lt;BR /&gt;I have put the quote in but still problems&lt;BR /&gt;&lt;BR /&gt;Read the script and what it is trying to do -- &lt;BR /&gt;&lt;BR /&gt;It is just for fun.&lt;BR /&gt;&lt;BR /&gt;#/bin there done that&lt;BR /&gt;##########################################&lt;BR /&gt;# One for us :-   ;^)  PJFC Sep 2001&lt;BR /&gt;##########################################&lt;BR /&gt;# The next bit&lt;BR /&gt;# Age&lt;BR /&gt;a=`cat /usr/sysadmin | awk ?{print $1}&lt;BR /&gt;if `echo $a != 21`&lt;BR /&gt;then a=21&lt;BR /&gt;fi&lt;BR /&gt;##########################################&lt;BR /&gt;# Sex&lt;BR /&gt;b= `cat /usr/sysadmin | awk ?{print $2}?`&lt;BR /&gt;if `echo $b != ?A lot?`&lt;BR /&gt;then b=?Sex god?&lt;BR /&gt;fi&lt;BR /&gt;##########################################&lt;BR /&gt;# Income&lt;BR /&gt;c= `cat /usr/sysadmin | awk ?{print $3}?&lt;BR /&gt;if `echo $c != ?Not Enough?`&lt;BR /&gt;then c= ?current x 3?&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;xxx&lt;BR /&gt;&lt;BR /&gt;Paula&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 18:26:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575769#M858379</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2001-09-05T18:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575770#M858380</link>
      <description>Methinks Paula is grinning us.&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 18:28:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575770#M858380</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-09-05T18:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575771#M858381</link>
      <description>It looks like we might be getting there&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Paula</description>
      <pubDate>Wed, 05 Sep 2001 18:29:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575771#M858381</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2001-09-05T18:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575772#M858382</link>
      <description>Hmmm,&lt;BR /&gt;&lt;BR /&gt;I get the following message when I type in 'sex':&lt;BR /&gt;&lt;BR /&gt;sex: not found&lt;BR /&gt;&lt;BR /&gt;Sounds about right.  &lt;BR /&gt;&lt;BR /&gt;The multiplier for your salary seems low.  I'd try upping it to x 5.&lt;BR /&gt;&lt;BR /&gt;:)&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 18:31:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575772#M858382</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2001-09-05T18:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575773#M858383</link>
      <description>Hmmmmmmmmm!!!!! &lt;BR /&gt;&lt;BR /&gt;See meee :-(</description>
      <pubDate>Wed, 05 Sep 2001 18:35:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575773#M858383</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2001-09-05T18:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575774#M858384</link>
      <description>Hi John&lt;BR /&gt;&lt;BR /&gt;I have tried the x5 but all I get is: -&lt;BR /&gt;&lt;BR /&gt;Insufficient recourses&lt;BR /&gt;&lt;BR /&gt;I have looked in money.log and the last entry is a negative value could this be the problem.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;;-0   &lt;BR /&gt;&lt;BR /&gt;paula&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 18:36:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575774#M858384</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2001-09-05T18:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575775#M858385</link>
      <description>Let's see now:&lt;BR /&gt;&lt;BR /&gt;Step 1:  We should all be 21&lt;BR /&gt;Step 2:  We should all be sex gods or goddesses&lt;BR /&gt;Step 3:  We should all be making triple what we are making now&lt;BR /&gt;&lt;BR /&gt;Sounds good to me!!!!!!!!!&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 18:38:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575775#M858385</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2001-09-05T18:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575776#M858386</link>
      <description>Ok.  It sounds like we should have a Unix command to fix that money problem.  Let's try the 'make' command:&lt;BR /&gt;&lt;BR /&gt;make more money&lt;BR /&gt;Make: Don't know how to make more.  Stop. &lt;BR /&gt;&lt;BR /&gt;Oops.  Looks like we're out of luck!    ;)&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 18:40:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575776#M858386</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2001-09-05T18:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575777#M858387</link>
      <description>I think I see the impossibility of it all now Paula.  &lt;BR /&gt;&lt;BR /&gt;I wish you could get this script to work, though I'd rather be 25.  Auto Insurance is cheaper that way.  ;)</description>
      <pubDate>Wed, 05 Sep 2001 18:46:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575777#M858387</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2001-09-05T18:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575778#M858388</link>
      <description>Paula !&lt;BR /&gt;   &lt;BR /&gt;   I see a problem where you are using comparison operatos. In Shell there two types of comparison operatos one for numberics and other for strings.&lt;BR /&gt;If you are comparing strings use ==, !=, &amp;gt; , &amp;lt; etc.,&lt;BR /&gt;If you are comparing numerics use -gt,-ne,-lt,-eq etc.&lt;BR /&gt;The script is modified to work.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Madhu&lt;BR /&gt;--------&lt;BR /&gt;#/bin there done that &lt;BR /&gt;########################################## &lt;BR /&gt;# One for us :- ;^) PJFC Sep 2001 &lt;BR /&gt;########################################## &lt;BR /&gt;# The next bit &lt;BR /&gt;# Age &lt;BR /&gt;a=`cat /usr/sysadmin | awk ?{print $1}?` &lt;BR /&gt;if test $a ?eq 21&lt;BR /&gt;then a=21 &lt;BR /&gt;fi &lt;BR /&gt;########################################## &lt;BR /&gt;# Sex &lt;BR /&gt;b= `cat /usr/sysadmin | awk ?{print $2}? &lt;BR /&gt;if test ?$b? != ?A lot? &lt;BR /&gt;then b=?Sex god? &lt;BR /&gt;fi &lt;BR /&gt;########################################## &lt;BR /&gt;# Income &lt;BR /&gt;c= `cat /usr/sysadmin | awk ?{print $3}?`&lt;BR /&gt;if test ?$c? != ?Not Enough?&lt;BR /&gt;then b= ?current x 3? &lt;BR /&gt;fi &lt;BR /&gt;--------------Cut here------------------- &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 19:01:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575778#M858388</guid>
      <dc:creator>Madhu Sudhan_1</dc:creator>
      <dc:date>2001-09-05T19:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575779#M858389</link>
      <description>I thought that had fixed it but alas no :-&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The errors are:-&lt;BR /&gt;&lt;BR /&gt;age = "You must be joking"&lt;BR /&gt;&lt;BR /&gt;sex = "You are already at limit"&lt;BR /&gt;&lt;BR /&gt;income = "Export cv/resume"&lt;BR /&gt;&lt;BR /&gt;;^0&lt;BR /&gt;&lt;BR /&gt;Paula</description>
      <pubDate>Wed, 05 Sep 2001 19:08:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575779#M858389</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2001-09-05T19:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575780#M858390</link>
      <description>Paula,&lt;BR /&gt;&lt;BR /&gt;This one would be good enough for me...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#/usr/bin/beer #(the little known beer shell)&lt;BR /&gt;#####################################&lt;BR /&gt;# Beer&lt;BR /&gt;beer=0&lt;BR /&gt;drinking=TRUE&lt;BR /&gt;while [ drinking = TRUE ]&lt;BR /&gt;  do&lt;BR /&gt;    if [ beer -ne 24 ]&lt;BR /&gt;      then&lt;BR /&gt;        ((beer+=1))&lt;BR /&gt;      else&lt;BR /&gt;        sleep 3600&lt;BR /&gt;        beer=0&lt;BR /&gt;  done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers!&lt;BR /&gt;&lt;BR /&gt;-Tim&lt;BR /&gt;       &lt;BR /&gt;         &lt;BR /&gt;&lt;BR /&gt;     &lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 19:10:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575780#M858390</guid>
      <dc:creator>Timothy Czarnik</dc:creator>
      <dc:date>2001-09-05T19:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575781#M858391</link>
      <description>Paula !&lt;BR /&gt;   Your script has the following statment&lt;BR /&gt;c= ?current x 3? &lt;BR /&gt;Here the variable current doesn't have any value neither initialised nor assigned. &lt;BR /&gt;&lt;BR /&gt;Are you trying to multiply current x 3 or are you trying to assign a string "current x 3" ?&lt;BR /&gt;&lt;BR /&gt;...Madhu</description>
      <pubDate>Wed, 05 Sep 2001 19:13:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575781#M858391</guid>
      <dc:creator>Madhu Sudhan_1</dc:creator>
      <dc:date>2001-09-05T19:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575782#M858392</link>
      <description>Hi Timothy&lt;BR /&gt;&lt;BR /&gt;You could perhaps use a get and make in your script.&lt;BR /&gt;&lt;BR /&gt;i.e.&lt;BR /&gt;&lt;BR /&gt;if beer = 0&lt;BR /&gt;then get more beer&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;or &lt;BR /&gt;if beer =0&lt;BR /&gt;then make beer&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;Paula</description>
      <pubDate>Wed, 05 Sep 2001 19:13:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575782#M858392</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2001-09-05T19:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575783#M858393</link>
      <description>Lets not get into debuging 401k.scr everytime that program runs. It crashes my entire system with the output going to retirement.out always getting lower and lower. I am thinking I need add a sleep command somewhere maybe a &lt;BR /&gt;sleep 31536000&lt;BR /&gt;and that should fix it for now. &lt;BR /&gt;&lt;BR /&gt;Richard</description>
      <pubDate>Wed, 05 Sep 2001 19:16:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575783#M858393</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2001-09-05T19:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575784#M858394</link>
      <description>Hi Madhu&lt;BR /&gt;&lt;BR /&gt;Yes I spotted that and defined current as 1 in the script.&lt;BR /&gt;&lt;BR /&gt;;-)&lt;BR /&gt;&lt;BR /&gt;Paula</description>
      <pubDate>Wed, 05 Sep 2001 19:16:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575784#M858394</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2001-09-05T19:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dam script will not work -     ;^0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575785#M858395</link>
      <description>The 'beer' shell script is a good example of how processes use pipes:&lt;BR /&gt;&lt;BR /&gt;beer | user | bathroom&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Of course, there is always my favorite little script (courtesy of thinkgeek.com - they have it on a t-shirt that I'd love to have!)&lt;BR /&gt;&lt;BR /&gt;cd /pub&lt;BR /&gt;more beer&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 19:17:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dam-script-will-not-work-0/m-p/2575785#M858395</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2001-09-05T19:17:45Z</dc:date>
    </item>
  </channel>
</rss>

