How do I remove the following file...

Kezdőlap
Csatolmányok:
Üzenet email-ben
+ (text/plain)
Üzenet törlése
Válasz az üzenetre
Szerző: David A. Sinck
Dátum:  
Tárgy: How do I remove the following file...

\_ SMTP quoth Steven M. Klass on 8/21/2001 08:07 as having spake thusly:
\_
\_ Hey all..
\_ 
\_ $ ls
\_ \033:\033\033::q   Space/               lcm.c                 resume.html
\_ Personal/          home.tar.gz          readme.txt
\_ 
\_ How do I remove the file  \033:\033\033::q  


rm -i *

i for interactive...let it figure out what to call the file, you just
say 'y' at the appropriate point.

or

'rm -i *:q' to give it a hint at the file(s) to pick

or

'rm -i ?:??::q' to avoid typing the annoying characters

or go into dired mode in emacs.

David