bug-coreutils
[Top][All Lists]
Advanced

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

bug#64326: Some more info about rm bug


From: Chris Elvidge
Subject: bug#64326: Some more info about rm bug
Date: Wed, 28 Jun 2023 18:33:07 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 Lightning/5.4

Or rm -- -abc

The "double-dash" signals "end of options"

On 28/06/2023 16:41, Arsen Arsenović via GNU coreutils Bug Reports wrote:
Hi,

LitHack <lithack0@gmail.com> writes:

Basically what it doing is that it doesn't recognise (-) this as a file
name part even when using (\-). This bug will work on most of utilities
like cat, cp etc

This is simply how argument parsing and shell syntax work.  'rm \-abc'
is equivalent to just 'rm -abc', which is parsed as 'rm -a -b -c'.  To
delete a file with a dash at the start of its name, use 'rm ./-file' and
similar.

Hope that helps, have a lovely day.



--

Chris Elvidge





reply via email to

[Prev in Thread] Current Thread [Next in Thread]