4
Unixツール:ファイルの名前に何かを付けた場合はどうなりますか?
私はいつも不思議に思っています。ほとんどのGNU / Unixツールは、「マイナスの何か」の形でオプションを取り、時には引数が続きます。もし何かマイナスの名前のファイルを手に入れたら? $ ls -f $ rm -f $ ls -f $ mv -f abc mv: missing destination file operand after `abc' Try `mv --help' for more information. $ cat -f cat: invalid option -- 'f' Try `cat --help' for more information. または $ ls -ohello.c $ gcc -ohello …