h****e 发帖数: 2125 | 1 I don't know how the system generated it. But whenever I want to rm this file,
say rm #test#, it shows me a message as follows:"
Usage: rm [-Rfir] file ...
"
Could anybody please help me out? Thank you. | x*****g 发帖数: 6 | 2 try rm -- #test#
or rm -- \#test\#
# is a special character, so you have to quote it
or use -- to tell rm to not interprete it as a command line
option.
【在 h****e 的大作中提到】 : I don't know how the system generated it. But whenever I want to rm this file, : say rm #test#, it shows me a message as follows:" : Usage: rm [-Rfir] file ... : " : Could anybody please help me out? Thank you.
| p******f 发帖数: 162 | 3 does #test# look like a command option?
rm \#test\#
【在 x*****g 的大作中提到】 : try rm -- #test# : or rm -- \#test\# : # is a special character, so you have to quote it : or use -- to tell rm to not interprete it as a command line : option.
| p*********r 发帖数: 23 | 4 rm "#test#"
file,
【在 h****e 的大作中提到】 : I don't know how the system generated it. But whenever I want to rm this file, : say rm #test#, it shows me a message as follows:" : Usage: rm [-Rfir] file ... : " : Could anybody please help me out? Thank you.
|
|