<?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: problem with strange file in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685894#M1361</link>
    <description>Hi Luca,&lt;BR /&gt;&lt;BR /&gt;Easy way to do it :&lt;BR /&gt;&lt;BR /&gt;1.&lt;BR /&gt;# ls /directoryWhereTheFileIs   &amp;gt;   /tmp/bizare.sh&lt;BR /&gt;&lt;BR /&gt;2.&lt;BR /&gt;# vi /tmp/bizare.sh&lt;BR /&gt;and remove all other files but not the bizare one. Then add the "rm" command in the begining, and the content of your /tmp/bizare.sh will be like :&lt;BR /&gt;&lt;BR /&gt;rm *^F.^M...&lt;BR /&gt;&lt;BR /&gt;3.&lt;BR /&gt;# sh /tmp/bizare.sh&lt;BR /&gt;&lt;BR /&gt;And the bizare file will be away .&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH &lt;BR /&gt;Magdi&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 20 Mar 2002 12:13:31 GMT</pubDate>
    <dc:creator>Magdi KAMAL</dc:creator>
    <dc:date>2002-03-20T12:13:31Z</dc:date>
    <item>
      <title>problem with strange file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685889#M1356</link>
      <description>Hi all!&lt;BR /&gt;On HP-UX 10.20 I have the following problem.&lt;BR /&gt;In one directory on my server I saw some file in the followin format : &lt;BR /&gt;@^DM-^V0@^DM-fM-|&lt;BR /&gt;Are there any way to delete them?&lt;BR /&gt;Thanks in advance for your help and your support.</description>
      <pubDate>Tue, 19 Mar 2002 09:55:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685889#M1356</guid>
      <dc:creator>Luca Frigatti</dc:creator>
      <dc:date>2002-03-19T09:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: problem with strange file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685890#M1357</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;there is an old quote "Unter UNIX der find ist dein freund" (in UNIX the find(enemy) is your friend):&lt;BR /&gt;# cd &lt;DIR&gt;&lt;BR /&gt;# ls -li&lt;BR /&gt;(grep the inode)&lt;BR /&gt;# find . -type f -inum &lt;INODE&gt; -exec rm {} \;&lt;BR /&gt;(hope you see the bachslash before the ; )&lt;BR /&gt;&lt;BR /&gt;Heiner&lt;BR /&gt;&lt;BR /&gt;&lt;/INODE&gt;&lt;/DIR&gt;</description>
      <pubDate>Tue, 19 Mar 2002 11:22:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685890#M1357</guid>
      <dc:creator>Heiner E. Lennackers</dc:creator>
      <dc:date>2002-03-19T11:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: problem with strange file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685891#M1358</link>
      <description>If your file has a few real characters then you can usually kill it with a judicious use of the asterisk&lt;BR /&gt;&lt;BR /&gt;rm *M*M*fM*&lt;BR /&gt;&lt;BR /&gt;should kill your:&lt;BR /&gt;@^DM-^V0@^DM-fM-| &lt;BR /&gt;just make sure you don't kill something you need.  &lt;BR /&gt;&lt;BR /&gt;You can also move all of the good files out of the directory then do rm * then move the good files back.&lt;BR /&gt;&lt;BR /&gt;Ron</description>
      <pubDate>Tue, 19 Mar 2002 15:09:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685891#M1358</guid>
      <dc:creator>Ron Kinner</dc:creator>
      <dc:date>2002-03-19T15:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: problem with strange file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685892#M1359</link>
      <description>You can also escape the characters that are usually used in the command line use the \ to escape them such as:&lt;BR /&gt;&lt;BR /&gt;rm \@M\-auxb&lt;BR /&gt;&lt;BR /&gt;This should work for you.</description>
      <pubDate>Tue, 19 Mar 2002 17:29:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685892#M1359</guid>
      <dc:creator>Jeffrey S. Sims</dc:creator>
      <dc:date>2002-03-19T17:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: problem with strange file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685893#M1360</link>
      <description>Before removing files using wildcards you may want to do a 'ls' first.  Alternatively use 'rm -i' to prompt you for deletion.&lt;BR /&gt;&lt;BR /&gt;You can use the file completion of bash to fill in the name for you, and it will properly escape the characters.  For example enter&lt;BR /&gt;'rm @' then hit the escape key a couple of times.</description>
      <pubDate>Tue, 19 Mar 2002 21:22:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685893#M1360</guid>
      <dc:creator>Bill Thorsteinson</dc:creator>
      <dc:date>2002-03-19T21:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: problem with strange file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685894#M1361</link>
      <description>Hi Luca,&lt;BR /&gt;&lt;BR /&gt;Easy way to do it :&lt;BR /&gt;&lt;BR /&gt;1.&lt;BR /&gt;# ls /directoryWhereTheFileIs   &amp;gt;   /tmp/bizare.sh&lt;BR /&gt;&lt;BR /&gt;2.&lt;BR /&gt;# vi /tmp/bizare.sh&lt;BR /&gt;and remove all other files but not the bizare one. Then add the "rm" command in the begining, and the content of your /tmp/bizare.sh will be like :&lt;BR /&gt;&lt;BR /&gt;rm *^F.^M...&lt;BR /&gt;&lt;BR /&gt;3.&lt;BR /&gt;# sh /tmp/bizare.sh&lt;BR /&gt;&lt;BR /&gt;And the bizare file will be away .&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH &lt;BR /&gt;Magdi&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Mar 2002 12:13:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685894#M1361</guid>
      <dc:creator>Magdi KAMAL</dc:creator>
      <dc:date>2002-03-20T12:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: problem with strange file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685895#M1362</link>
      <description>Also,&lt;BR /&gt;Rather than trying yo delete using the command line. Use your file manager in your desktop environment.&lt;BR /&gt;Open to the file folder find the file, right click and delete it or drag and drop in to your trash can. (This will only work if the file has write permissions, but those can be added by right click/properties)&lt;BR /&gt;I've found it to be the quickest, easiest way to delete a file with a strange name. Using the command line can be dangerous if you are not careful.&lt;BR /&gt;Good luck,&lt;BR /&gt;Kel</description>
      <pubDate>Thu, 21 Mar 2002 01:01:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problem-with-strange-file/m-p/2685895#M1362</guid>
      <dc:creator>Kelli Ward</dc:creator>
      <dc:date>2002-03-21T01:01:21Z</dc:date>
    </item>
  </channel>
</rss>

