私はSolarisコンピュータからこのファイルを削除しようとしました。
rm "-Insi"
rm: illegal option -- I
rm: illegal option -- n
rm: illegal option -- s
私もこれをします。
rm "\-Insi"
-Insi: No such file or directory
rm '\-Insi'
-Insi: No such file or directory
それでは、私にはどんな選択肢がありますか?
答え1
努力する:
rm -- -Insi
または:
rm ./-Insi
答え2
man rm
(少なくともUbuntuでは...私のSolarisボックスは接続されていません。)教えてください:
To remove a file whose name starts with a '-', for example '-foo', use one of these commands: rm -- -foo rm ./-foo