<?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: about Shell Variable in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920713#M407851</link>
    <description>Thanks John, I tried what you said, but failed again, please help:&lt;BR /&gt;&lt;BR /&gt;# runcmd="uuencode hhawmail.sh hhawmail.sh; uuencode hhawmail.sh hhawmail.sh"&lt;BR /&gt;# echo $runcmd&lt;BR /&gt;uuencode hhawmail.sh hhawmail.sh; uuencode hhawmail.sh hhawmail.sh&lt;BR /&gt;# $runcmd | mailx -m -s "test" abc@domain.com&lt;BR /&gt;&lt;BR /&gt;I got an email without attachment, and with email body:&lt;BR /&gt;Usage: uuencode [ source ] remotedest&lt;BR /&gt;&lt;BR /&gt;Still not the same as I ran directly:&lt;BR /&gt;# ( uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh" ) | mailx -m -s "test" abc@domain.com&lt;BR /&gt;</description>
    <pubDate>Wed, 24 Aug 2005 08:41:28 GMT</pubDate>
    <dc:creator>yyghp</dc:creator>
    <dc:date>2005-08-24T08:41:28Z</dc:date>
    <item>
      <title>about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920706#M407844</link>
      <description>I tried to run the following command with shell variable:&lt;BR /&gt;&lt;BR /&gt;# ( uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh" )  | mailx -m -s "test" abc@domain.com&lt;BR /&gt;&lt;BR /&gt;I used shell variable "$test":&lt;BR /&gt;&lt;BR /&gt;# test='uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh"'&lt;BR /&gt;# echo $test&lt;BR /&gt;uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh"&lt;BR /&gt;&lt;BR /&gt;But I failed to run the following:&lt;BR /&gt;# ( ${test} ) | mailx -m -s "test" abc@domain.com&lt;BR /&gt;"hhawmail.sh": No such file or directory&lt;BR /&gt;Null message body; hope that's ok&lt;BR /&gt;&lt;BR /&gt;So, how should I embed "$test" to that command line to let it work exactly like:&lt;BR /&gt;# ( uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh" )  | mailx -m -s "test" abc@domain.com&lt;BR /&gt;&lt;BR /&gt;Thanks!</description>
      <pubDate>Wed, 24 Aug 2005 08:01:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920706#M407844</guid>
      <dc:creator>yyghp</dc:creator>
      <dc:date>2005-08-24T08:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920707#M407845</link>
      <description>test="uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh""&lt;BR /&gt;&lt;BR /&gt;Double quote whole thing.&lt;BR /&gt;&lt;BR /&gt;Also&lt;BR /&gt;test='(uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh")'&lt;BR /&gt;should also work.</description>
      <pubDate>Wed, 24 Aug 2005 08:06:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920707#M407845</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-08-24T08:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920708#M407846</link>
      <description>Hi Yyghp ,&lt;BR /&gt;&lt;BR /&gt;1. test="uuencode hhawmail.sh hhawmail.sh; uuencode test_hhawmail.sh test_hhawmail.sh"&lt;BR /&gt;&lt;BR /&gt;2. ( ${test} ) | mailx -m -s "test" abc@domain.com&lt;BR /&gt;&lt;BR /&gt;But not sure about the attachment , need to try out..&lt;BR /&gt;Cheers ,&lt;BR /&gt;&lt;BR /&gt;Raj.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2005 08:21:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920708#M407846</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-08-24T08:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920709#M407847</link>
      <description>I found that error in quoting - you've got more than you need.&lt;BR /&gt;&lt;BR /&gt;First off, it's a bad idea in general to use variable names that are commands.  "test" is actually a command.  It's not your problem here, but I'm just letting you know.&lt;BR /&gt;&lt;BR /&gt;runcmd="uuencode hhawmail.sh hhawmail.sh; uuencode hhawmail.sh hhawmail.sh"&lt;BR /&gt;$runcmd | mailx -m -s "test" abc@domain.com&lt;BR /&gt;&lt;BR /&gt;now works.&lt;BR /&gt;&lt;BR /&gt;So to assign your command string to the runcmd variable, you just need to enclose the whole command in a single set of quotes.  If you're intent on using the quotes around the filename names, the you should put a "\" in front of each quote " character that surrounds each filename.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2005 08:21:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920709#M407847</guid>
      <dc:creator>TwoProc</dc:creator>
      <dc:date>2005-08-24T08:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920710#M407848</link>
      <description>Thanks RAC, but both ways don't work:&lt;BR /&gt;&lt;BR /&gt;1. double quote:&lt;BR /&gt;# test="uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh""&lt;BR /&gt;# echo $test&lt;BR /&gt;uuencode hhawmail.sh hhawmail.sh; uuencode test_hhawmail.sh test_hhawmail.sh&lt;BR /&gt;# ( ${test} ) | mailx -m -s "test" abc@domain.com&lt;BR /&gt;&lt;BR /&gt;But I got an email without attachment, and with email body:&lt;BR /&gt;Usage: uuencode [ source ] remotedest&lt;BR /&gt;&lt;BR /&gt;2. &lt;BR /&gt;# test='( uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh" )'&lt;BR /&gt;# echo $test&lt;BR /&gt;( uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh" )&lt;BR /&gt;# $test | mailx -m -s "test" abc@domain.com&lt;BR /&gt;ksh: (:  not found&lt;BR /&gt;Null message body; hope that's ok&lt;BR /&gt;# ( ${test} ) | mailx -m -s "test" abc@domain.com&lt;BR /&gt;ksh: (:  not found&lt;BR /&gt;Null message body; hope that's ok&lt;BR /&gt;&lt;BR /&gt;But why I can use the following to get two attachments correctly:&lt;BR /&gt;# ( uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh" )  | mailx -m -s "test" abc@domain.com&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2005 08:30:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920710#M407848</guid>
      <dc:creator>yyghp</dc:creator>
      <dc:date>2005-08-24T08:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920711#M407849</link>
      <description>Hi ,&lt;BR /&gt;&lt;BR /&gt;You have to use runcmd like this , else give error,&lt;BR /&gt;&lt;BR /&gt;(${runcmd})| mailx -m -s "test" abc@domain.com&lt;BR /&gt;&lt;BR /&gt;Cheers ,&lt;BR /&gt;Raj</description>
      <pubDate>Wed, 24 Aug 2005 08:33:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920711#M407849</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-08-24T08:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920712#M407850</link>
      <description>test='\( uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh" \)'&lt;BR /&gt;&lt;BR /&gt;WILL WORK</description>
      <pubDate>Wed, 24 Aug 2005 08:38:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920712#M407850</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-08-24T08:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920713#M407851</link>
      <description>Thanks John, I tried what you said, but failed again, please help:&lt;BR /&gt;&lt;BR /&gt;# runcmd="uuencode hhawmail.sh hhawmail.sh; uuencode hhawmail.sh hhawmail.sh"&lt;BR /&gt;# echo $runcmd&lt;BR /&gt;uuencode hhawmail.sh hhawmail.sh; uuencode hhawmail.sh hhawmail.sh&lt;BR /&gt;# $runcmd | mailx -m -s "test" abc@domain.com&lt;BR /&gt;&lt;BR /&gt;I got an email without attachment, and with email body:&lt;BR /&gt;Usage: uuencode [ source ] remotedest&lt;BR /&gt;&lt;BR /&gt;Still not the same as I ran directly:&lt;BR /&gt;# ( uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh" ) | mailx -m -s "test" abc@domain.com&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2005 08:41:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920713#M407851</guid>
      <dc:creator>yyghp</dc:creator>
      <dc:date>2005-08-24T08:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920714#M407852</link>
      <description>Hi Yyghp ,&lt;BR /&gt;&lt;BR /&gt;Because uuencode syntax you are writing is worng .&lt;BR /&gt;&lt;BR /&gt;it should be like that :&lt;BR /&gt;&lt;BR /&gt;# uuencode file1 file1 | mailx -s 'new program' friends@email.com&lt;BR /&gt;&lt;BR /&gt;And you will get the attachment , &lt;BR /&gt;---------------------------------&lt;BR /&gt;&lt;BR /&gt;For getting dual attachment , do this :&lt;BR /&gt;&lt;BR /&gt;$ (uuencode file1 file1 ;  uuencode file2 file2 )  | mailx -m -s "Dual Attachment Test" abc@domain.com&lt;BR /&gt;--------------------------------&lt;BR /&gt;&lt;BR /&gt;Hope you got the solution ,&lt;BR /&gt;&lt;BR /&gt;Cheers ,&lt;BR /&gt;Raj.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2005 08:41:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920714#M407852</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-08-24T08:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920715#M407853</link>
      <description>Thanks Raj D.&lt;BR /&gt;I tried:&lt;BR /&gt;# ( ${runcmd} ) | mailx -m -s "test" abc@domain.com&lt;BR /&gt;&lt;BR /&gt;But same error&lt;BR /&gt;I got an email without attachment, and with email body:&lt;BR /&gt;Usage: uuencode [ source ] remotedest&lt;BR /&gt;&lt;BR /&gt;Still not the same as I ran directly:&lt;BR /&gt;# ( uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh" ) | mailx -m -s "test" abc@domain.com&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2005 08:45:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920715#M407853</guid>
      <dc:creator>yyghp</dc:creator>
      <dc:date>2005-08-24T08:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920716#M407854</link>
      <description>Hi RAC&lt;BR /&gt;&lt;BR /&gt;# runcmd='\( uuencode hhawmail.sh hhawmail.sh; uuencode hhawmail.sh hhawmail.sh \)'&lt;BR /&gt;# echo $runcmd&lt;BR /&gt;\( uuencode hhawmail.sh hhawmail.sh; uuencode hhawmail.sh hhawmail.sh \)&lt;BR /&gt;# $runcmd | mailx -m -s "test" abc@domain.com&lt;BR /&gt;ksh: \(:  not found&lt;BR /&gt;Null message body; hope that's ok&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2005 08:50:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920716#M407854</guid>
      <dc:creator>yyghp</dc:creator>
      <dc:date>2005-08-24T08:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920717#M407855</link>
      <description>Thanks Raj D.&lt;BR /&gt;Now I am going to mail two attachments, I don't have problem to run:&lt;BR /&gt;# ( uuencode "hhawmail.sh" "hhawmail.sh"; uuencode "test_hhawmail.sh" "test_hhawmail.sh" ) | mailx -m -s "test" abc@domain.com&lt;BR /&gt;or &lt;BR /&gt;# ( uuencode hhawmail.sh hhawmail.sh; uuencode test_hhawmail.sh test_hhawmail.sh ) | mailx -m -s "test" abc@domain.com&lt;BR /&gt;&lt;BR /&gt;But when I used shell variable, then failed.&lt;BR /&gt;I have to use shell variable in the shell script, how can I make it?&lt;BR /&gt;Thanks!</description>
      <pubDate>Wed, 24 Aug 2005 09:11:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920717#M407855</guid>
      <dc:creator>yyghp</dc:creator>
      <dc:date>2005-08-24T09:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920718#M407856</link>
      <description>Can anyone try to run the command and give me a solution?&lt;BR /&gt;Thanks!</description>
      <pubDate>Wed, 24 Aug 2005 09:22:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920718#M407856</guid>
      <dc:creator>yyghp</dc:creator>
      <dc:date>2005-08-24T09:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920719#M407857</link>
      <description>Hi Yyghp ,&lt;BR /&gt;&lt;BR /&gt;Here is the solution,&lt;BR /&gt;&lt;BR /&gt;For taking it in single variable its giving error at "(" , hence you have to take in 2 variable , one for Command , one for file(s).&lt;BR /&gt;&lt;BR /&gt;So here we go :&lt;BR /&gt;&lt;BR /&gt;---------------------------------------------------------------------------------------&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;############################################&lt;BR /&gt;# Storing Variables,&lt;BR /&gt;UU_COM=uuencode ; FILE1=hhawmail.sh ; FILE2=test_hhawmail.sh &lt;BR /&gt;&lt;BR /&gt;($UU_COM $FILE $FILE; $UU_COM $FILE2 $FILE2) | mailx -m -s "test" abc@domain.com &lt;BR /&gt;############################################&lt;BR /&gt;&lt;BR /&gt;Do you get the email, with attachment. Pls update.&lt;BR /&gt;&lt;BR /&gt;Cheers ,&lt;BR /&gt;Raj.&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2005 09:25:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920719#M407857</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-08-24T09:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920720#M407858</link>
      <description>Great! It works! Thanks Raj!&lt;BR /&gt;&lt;BR /&gt;# uu_com=uuencode&lt;BR /&gt;# file1=hhawmail.sh&lt;BR /&gt;# file2=test_hhawmail.sh&lt;BR /&gt;# echo $uu_com&lt;BR /&gt;uuencode&lt;BR /&gt;# echo $file1&lt;BR /&gt;hhawmail.sh&lt;BR /&gt;# echo $file2&lt;BR /&gt;test_hhawmail.sh&lt;BR /&gt;# ( $uu_com $file1 $file1; $uu_com $file2 $file2 ) | mailx -m -s "test" abc@domain.com&lt;BR /&gt;&lt;BR /&gt;Now I can get two attachemnts without error.</description>
      <pubDate>Wed, 24 Aug 2005 09:33:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920720#M407858</guid>
      <dc:creator>yyghp</dc:creator>
      <dc:date>2005-08-24T09:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920721#M407859</link>
      <description>Hi Yyghp ,&lt;BR /&gt;&lt;BR /&gt;Happy to know that its working ..and enjoy this Forum. &lt;BR /&gt;&lt;BR /&gt;Cheers ,&lt;BR /&gt;Raj.</description>
      <pubDate>Wed, 24 Aug 2005 09:46:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920721#M407859</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-08-24T09:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920722#M407860</link>
      <description>Sorry YY - I didn't actually test it with the mailx part of the command.  Since the problem seemed to me to be hung on the $command to do the uuencoding, when I got uuencoded output to standard out from the $cmdrun variable - I assumed that the mailx part would work as written.  Didn't think that we were fighting two problems.</description>
      <pubDate>Wed, 24 Aug 2005 09:56:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920722#M407860</guid>
      <dc:creator>TwoProc</dc:creator>
      <dc:date>2005-08-24T09:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920723#M407861</link>
      <description>YY,&lt;BR /&gt;&lt;BR /&gt;You could always do the following within your shell script:&lt;BR /&gt;&lt;BR /&gt;============================================================&lt;BR /&gt;# test="uuencode hhawmail.sh hhawmail.sh; uuencode test_hhawmail.sh test_hhawmail.sh"&lt;BR /&gt;&lt;BR /&gt;# (echo $test | /usr/bin/sh ) | mailx -m -s "test" abc@domain.com&lt;BR /&gt;============================================================&lt;BR /&gt;&lt;BR /&gt;cheers!</description>
      <pubDate>Wed, 24 Aug 2005 11:50:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920723#M407861</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2005-08-24T11:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920724#M407862</link>
      <description>You can pipe the output of echo to any shell of your choice and for compact code you can always use "sh" instead of "/usr/bin/sh" i.e.&lt;BR /&gt;&lt;BR /&gt;============================================================&lt;BR /&gt;# test="uuencode hhawmail.sh hhawmail.sh; uuencode test_hhawmail.sh test_hhawmail.sh"&lt;BR /&gt;&lt;BR /&gt;# (echo $test | sh ) | mailx -m -s "test" abc@domain.com&lt;BR /&gt;============================================================&lt;BR /&gt;&lt;BR /&gt;regards!</description>
      <pubDate>Wed, 24 Aug 2005 11:57:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920724#M407862</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2005-08-24T11:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: about Shell Variable</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920725#M407863</link>
      <description>Great Sandman. Please elaborate. I was spinning my head for getting this to work.&lt;BR /&gt;&lt;BR /&gt;I tried what I could imagine.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Aug 2005 12:47:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/about-shell-variable/m-p/4920725#M407863</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-08-24T12:47:54Z</dc:date>
    </item>
  </channel>
</rss>

