How do I remove the following file...

トップ ページ
添付ファイル:
Eメールのメッセージ
+ (text/plain)
このメッセージを削除
このメッセージに返信
著者: David A. Sinck
日付:  
題目: 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