<?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: Scripting Issue in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/scripting-issue/m-p/4755751#M656844</link>
    <description>I got it. Thanks for your great help.</description>
    <pubDate>Mon, 21 Feb 2011 13:14:16 GMT</pubDate>
    <dc:creator>Dewa Negara_4</dc:creator>
    <dc:date>2011-02-21T13:14:16Z</dc:date>
    <item>
      <title>Scripting Issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scripting-issue/m-p/4755747#M656837</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;Please help on the scripting issue below:&lt;BR /&gt;&lt;BR /&gt;[root@sihp8039:/var/opt/soeg/rpt]&lt;BR /&gt;# MSGMSG="21 - /var/opt/secu/log/root/* access is protected"&lt;BR /&gt;&lt;BR /&gt;[root@sihp8039:/var/opt/soeg/rpt]&lt;BR /&gt;# echo $MSGMSG&lt;BR /&gt;21 - /var/opt/secu/log/root/remsh.log /var/opt/secu/log/root/su.log access is protected&lt;BR /&gt;&lt;BR /&gt;That is not what I want. My expected output result as below. &lt;BR /&gt;# echo $MSGMSG&lt;BR /&gt;21 - /var/opt/secu/log/root/* access is protected&lt;BR /&gt;&lt;BR /&gt;How to get that's output?&lt;BR /&gt;&lt;BR /&gt;Thanks and Regards,&lt;BR /&gt;Negara</description>
      <pubDate>Mon, 21 Feb 2011 12:24:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scripting-issue/m-p/4755747#M656837</guid>
      <dc:creator>Dewa Negara_4</dc:creator>
      <dc:date>2011-02-21T12:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting Issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scripting-issue/m-p/4755748#M656838</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Just disable the shell's file name generation (globbing), use "set -f". You can set and unset this option as often as required.&lt;BR /&gt;&lt;BR /&gt;Rgds.&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Feb 2011 12:36:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scripting-issue/m-p/4755748#M656838</guid>
      <dc:creator>Jose Mosquera</dc:creator>
      <dc:date>2011-02-21T12:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting Issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scripting-issue/m-p/4755749#M656840</link>
      <description>Hi Jose, &lt;BR /&gt;&lt;BR /&gt;Thanks for help. If I use "set -f", how to enable back the filename generation? &lt;BR /&gt;&lt;BR /&gt;[root@sihp8039:/root]&lt;BR /&gt;# set -f&lt;BR /&gt;&lt;BR /&gt;[root@sihp8039:/root]&lt;BR /&gt;# MSGMSG="21 - /var/opt/secu/log/root/* access is protected"&lt;BR /&gt;&lt;BR /&gt;[root@sihp8039:/root]&lt;BR /&gt;# echo $MSGMSG&lt;BR /&gt;21 - /var/opt/secu/log/root/* access is protected&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks and Regards,&lt;BR /&gt;Negara</description>
      <pubDate>Mon, 21 Feb 2011 13:01:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scripting-issue/m-p/4755749#M656840</guid>
      <dc:creator>Dewa Negara_4</dc:creator>
      <dc:date>2011-02-21T13:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting Issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scripting-issue/m-p/4755750#M656842</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Please try "set +f"&lt;BR /&gt;&lt;BR /&gt;Rgds</description>
      <pubDate>Mon, 21 Feb 2011 13:07:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scripting-issue/m-p/4755750#M656842</guid>
      <dc:creator>Jose Mosquera</dc:creator>
      <dc:date>2011-02-21T13:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting Issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scripting-issue/m-p/4755751#M656844</link>
      <description>I got it. Thanks for your great help.</description>
      <pubDate>Mon, 21 Feb 2011 13:14:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scripting-issue/m-p/4755751#M656844</guid>
      <dc:creator>Dewa Negara_4</dc:creator>
      <dc:date>2011-02-21T13:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting Issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scripting-issue/m-p/4755752#M656846</link>
      <description>&amp;gt;How to get that output?&lt;BR /&gt;&lt;BR /&gt;It is easier to quote it than to turn off globbing:&lt;BR /&gt;echo "$MSGMSG"&lt;BR /&gt;&lt;BR /&gt;Another reason for quoting is to maintain multiple spaces.</description>
      <pubDate>Mon, 21 Feb 2011 18:58:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scripting-issue/m-p/4755752#M656846</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2011-02-21T18:58:34Z</dc:date>
    </item>
  </channel>
</rss>

