<?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: echo in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253785#M687657</link>
    <description>Hi:&lt;BR /&gt;&lt;BR /&gt;The echo statement is writing to STDOUT the exact string shown and then passing (piping) that to the 'ftp' process which is going to open an interactive ftp session with host "xyz".&lt;BR /&gt;&lt;BR /&gt;The backslash in front of the '$' escapes tells your shell *not* to interpolate the string as a variable but leave it alone.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
    <pubDate>Mon, 18 Aug 2008 10:43:20 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2008-08-18T10:43:20Z</dc:date>
    <item>
      <title>echo</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253784#M687656</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;echo "\$send_file_list" | ftp -i xyz&lt;BR /&gt;&lt;BR /&gt;What the above script line is doing, and where I can get the send_file_list?&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Mon, 18 Aug 2008 10:33:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253784#M687656</guid>
      <dc:creator>Fuad_1</dc:creator>
      <dc:date>2008-08-18T10:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: echo</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253785#M687657</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;The echo statement is writing to STDOUT the exact string shown and then passing (piping) that to the 'ftp' process which is going to open an interactive ftp session with host "xyz".&lt;BR /&gt;&lt;BR /&gt;The backslash in front of the '$' escapes tells your shell *not* to interpolate the string as a variable but leave it alone.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 18 Aug 2008 10:43:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253785#M687657</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-08-18T10:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: echo</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253786#M687658</link>
      <description>Thanks James,&lt;BR /&gt;&lt;BR /&gt;But where I can see the value of send_file_list?</description>
      <pubDate>Mon, 18 Aug 2008 10:49:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253786#M687658</guid>
      <dc:creator>Fuad_1</dc:creator>
      <dc:date>2008-08-18T10:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: echo</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253787#M687659</link>
      <description>there is no value for send_file_list. try it in a shell:&lt;BR /&gt;# echo "\$send_file_list"&lt;BR /&gt;$send_file_list&lt;BR /&gt;&lt;BR /&gt;is this a line in a script?&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Aug 2008 10:52:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253787#M687659</guid>
      <dc:creator>Oviwan</dc:creator>
      <dc:date>2008-08-18T10:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: echo</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253788#M687660</link>
      <description>Yes, this suppose to transfer file from one server to another!</description>
      <pubDate>Mon, 18 Aug 2008 10:55:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253788#M687660</guid>
      <dc:creator>Fuad_1</dc:creator>
      <dc:date>2008-08-18T10:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: echo</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253789#M687661</link>
      <description>Hi (again) Fuad:&lt;BR /&gt;&lt;BR /&gt;&amp;gt;  But where I can see the value of send_file_list?&lt;BR /&gt;&lt;BR /&gt;There is no value.  The backslash ('\') tells the shell *not* to evaluate the '$send_file_list'.  Compare these:&lt;BR /&gt;&lt;BR /&gt;# send_file_list=somefiles&lt;BR /&gt;# echo "$send_file_list"&lt;BR /&gt;somefiles&lt;BR /&gt;# echo "\$esnd_file_list"&lt;BR /&gt;$send_file_list&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Aug 2008 10:55:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253789#M687661</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-08-18T10:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: echo</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253790#M687662</link>
      <description>Hi (again) Fuad:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Yes, this suppose to transfer file from one server to another!&lt;BR /&gt;&lt;BR /&gt;Then you undoubedly want to drop the '\' from "\$send_file_list".&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 18 Aug 2008 10:57:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/echo/m-p/4253790#M687662</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-08-18T10:57:20Z</dc:date>
    </item>
  </channel>
</rss>

