<?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: How to rm a file that starts with \\ in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-rm-a-file-that-starts-with/m-p/3132628#M153296</link>
    <description>&lt;BR /&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;List with inode #s:&lt;BR /&gt;ll -i |more &lt;BR /&gt;Substitute with the inode number the # sign in the line below - check using:&lt;BR /&gt;find . -xdev -inum # -exec ll {} \;&lt;BR /&gt;remove using:&lt;BR /&gt;find . -xdev -inum # -exec rm -i {} \; &lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Bernhard&lt;BR /&gt;</description>
    <pubDate>Mon, 01 Dec 2003 10:48:07 GMT</pubDate>
    <dc:creator>Bernhard Mueller</dc:creator>
    <dc:date>2003-12-01T10:48:07Z</dc:date>
    <item>
      <title>How to rm a file that starts with \\</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-rm-a-file-that-starts-with/m-p/3132627#M153295</link>
      <description>I have a file that was created from SAP named \\gorfile01\user$\Mason_Geoff\My. I have tried rm -fi "\\gorfile01\user$\Mason_Geoff\My" it did not work. Any suggestions?</description>
      <pubDate>Mon, 01 Dec 2003 10:42:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-rm-a-file-that-starts-with/m-p/3132627#M153295</guid>
      <dc:creator>Nicholas Romany_1</dc:creator>
      <dc:date>2003-12-01T10:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to rm a file that starts with \\</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-rm-a-file-that-starts-with/m-p/3132628#M153296</link>
      <description>&lt;BR /&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;List with inode #s:&lt;BR /&gt;ll -i |more &lt;BR /&gt;Substitute with the inode number the # sign in the line below - check using:&lt;BR /&gt;find . -xdev -inum # -exec ll {} \;&lt;BR /&gt;remove using:&lt;BR /&gt;find . -xdev -inum # -exec rm -i {} \; &lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Bernhard&lt;BR /&gt;</description>
      <pubDate>Mon, 01 Dec 2003 10:48:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-rm-a-file-that-starts-with/m-p/3132628#M153296</guid>
      <dc:creator>Bernhard Mueller</dc:creator>
      <dc:date>2003-12-01T10:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to rm a file that starts with \\</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-rm-a-file-that-starts-with/m-p/3132629#M153297</link>
      <description>Because the shell uses the "\" character as an escape. In order to get a single backslash you must always use two backslashes. For example "\r" quotes a carraige return. You need "\\" to get a backslash and thus four backslashes to get two.&lt;BR /&gt;</description>
      <pubDate>Mon, 01 Dec 2003 10:48:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-rm-a-file-that-starts-with/m-p/3132629#M153297</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2003-12-01T10:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to rm a file that starts with \\</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-rm-a-file-that-starts-with/m-p/3132630#M153298</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;a simple rm -i should work if you use wildcards :&lt;BR /&gt;&lt;BR /&gt;/home/phelix&amp;gt; ll *gor*&lt;BR /&gt;-rw-r--r--   1 phelix     CST              0 Dec  1 16:52 \\gorfile01\user$\Mason_Geoff\My&lt;BR /&gt;/home/phelix&amp;gt; rm -i *gor*&lt;BR /&gt;\\gorfile01\user$\Mason_Geoff\My: ? (y/n) y&lt;BR /&gt;/home/phelix&amp;gt; ll *gor*&lt;BR /&gt;*gor* not found&lt;BR /&gt;/home/phelix&amp;gt;&lt;BR /&gt;&lt;BR /&gt;Regards.</description>
      <pubDate>Mon, 01 Dec 2003 10:54:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-rm-a-file-that-starts-with/m-p/3132630#M153298</guid>
      <dc:creator>Jean-Louis Phelix</dc:creator>
      <dc:date>2003-12-01T10:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to rm a file that starts with \\</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-rm-a-file-that-starts-with/m-p/3132631#M153299</link>
      <description>I tried the wildcards and it worked.&lt;BR /&gt;Thanks all&lt;BR /&gt;</description>
      <pubDate>Mon, 01 Dec 2003 11:09:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-rm-a-file-that-starts-with/m-p/3132631#M153299</guid>
      <dc:creator>Nicholas Romany_1</dc:creator>
      <dc:date>2003-12-01T11:09:21Z</dc:date>
    </item>
  </channel>
</rss>

