Re: Removing a file that starts with dashes

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]



Frank M. Ramaekers wrote:
> How can I remove this file?
>
> -rw-r--r-- 1 root    root       28707 Mar 31 12:31 --backup=numbered
>
> I've tried a few different methods, but most attempts interprets the
> file name as a switch (which it doesn't understand).

Method 1: try rm \-\-backup\=numbered
Method 2, that will *ALWAYS* work:
ls -i
then, using the inode number
find . -inum <inode> -exec rm {} \;

The latter method is the one guaranteed to take care of all kinds of
filenames with weird, or unprintable, stuff in the name.

       mark

_______________________________________________
CentOS mailing list
CentOS@xxxxxxxxxx
http://lists.centos.org/mailman/listinfo/centos




[Index of Archives]     [CentOS]     [CentOS Announce]     [CentOS Development]     [CentOS ARM Devel]     [CentOS Docs]     [CentOS Virtualization]     [Carrier Grade Linux]     [Linux Media]     [Asterisk]     [DCCP]     [Netdev]     [Xorg]     [Linux USB]
  Powered by Linux