<?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: White Space in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430632#M2883</link>
    <description>Thanks Chris&lt;BR /&gt;&lt;BR /&gt;But I should have given more detail&lt;BR /&gt;&lt;BR /&gt;I am writing a script that takes a filename - with non alpha numeric chars - and I want to remove them&lt;BR /&gt;&lt;BR /&gt;Steve</description>
    <pubDate>Thu, 13 Jul 2000 14:23:48 GMT</pubDate>
    <dc:creator>Steve Massey_1</dc:creator>
    <dc:date>2000-07-13T14:23:48Z</dc:date>
    <item>
      <title>White Space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430630#M2881</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;What is the best way to remove white space from a file name&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Thu, 13 Jul 2000 14:11:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430630#M2881</guid>
      <dc:creator>Steve Massey_1</dc:creator>
      <dc:date>2000-07-13T14:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: White Space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430631#M2882</link>
      <description>Move the file. (mv tod*ay newname)&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Jul 2000 14:22:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430631#M2882</guid>
      <dc:creator>CHRIS_ANORUO</dc:creator>
      <dc:date>2000-07-13T14:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: White Space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430632#M2883</link>
      <description>Thanks Chris&lt;BR /&gt;&lt;BR /&gt;But I should have given more detail&lt;BR /&gt;&lt;BR /&gt;I am writing a script that takes a filename - with non alpha numeric chars - and I want to remove them&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Thu, 13 Jul 2000 14:23:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430632#M2883</guid>
      <dc:creator>Steve Massey_1</dc:creator>
      <dc:date>2000-07-13T14:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: White Space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430633#M2884</link>
      <description>mv "name with black" namewithoutblack</description>
      <pubDate>Thu, 13 Jul 2000 14:25:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430633#M2884</guid>
      <dc:creator>Patrick Wessel</dc:creator>
      <dc:date>2000-07-13T14:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: White Space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430634#M2885</link>
      <description>The tr (translate characters) command may give you the options you are after. It can be used to remove "white space".&lt;BR /&gt;&lt;BR /&gt;man tr&lt;BR /&gt;&lt;BR /&gt;Brian&lt;BR /&gt;&amp;lt;*(((&amp;gt;&amp;lt; er</description>
      <pubDate>Thu, 13 Jul 2000 14:35:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430634#M2885</guid>
      <dc:creator>Brian M. Fisher</dc:creator>
      <dc:date>2000-07-13T14:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: White Space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430635#M2886</link>
      <description>well, I guess I posted my first answer to fast.&lt;BR /&gt;&lt;BR /&gt;this line should do the trick:&lt;BR /&gt;&lt;BR /&gt;string_without_space=`echo $string_with_blank | sed -e 's/ //g'`</description>
      <pubDate>Thu, 13 Jul 2000 14:38:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430635#M2886</guid>
      <dc:creator>Patrick Wessel</dc:creator>
      <dc:date>2000-07-13T14:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: White Space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430636#M2887</link>
      <description>To generalize the sed command for any particular set of non-standard characters use:&lt;BR /&gt;&lt;BR /&gt;good_name=`echo bad_name|sed 's/[&lt;LIST of="" bad="" characters=""&gt;]//g'&lt;BR /&gt;mv $bad_name $good_name&lt;/LIST&gt;</description>
      <pubDate>Thu, 13 Jul 2000 15:00:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430636#M2887</guid>
      <dc:creator>Alan Riggs</dc:creator>
      <dc:date>2000-07-13T15:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: White Space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430637#M2888</link>
      <description>I like Alan Riggs' answer, but remember that some of the special characters that you might want to list will have to be "escaped" with th \ character.</description>
      <pubDate>Fri, 14 Jul 2000 16:24:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/white-space/m-p/2430637#M2888</guid>
      <dc:creator>Duane Gorder</dc:creator>
      <dc:date>2000-07-14T16:24:18Z</dc:date>
    </item>
  </channel>
</rss>

