It looks like english but I didn't understand a
word ...
What are you trying to do?
Delete a file named "-??+-?+?.txt"?
For that you can either
escape the wildcards
rm -- -\?\?+-\?+\?.txt
or
rm -- "-??+-?+?.txt"
should work, too...
The -- is required to inform rm (actually,
any command :}) that there's no more
options coming up...
Cheers,
Tink
Last edited by Tinkster; 07-28-2003 at 05:12 PM.
|