4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ファイル名に誤ってハイフンを入れてしまって消したくなったときの為のメモ

Posted at

うっかり -p みたいなファイルやディレクトリを作ってしまうことがたまーにありませんか?

$ ls -l
total 4
drwxrwxr-x 2 vagrant vagrant 4096 2015-08-21 17:33 -p

いざこいつを消そうと思っても - が付いていることによってオプションと解釈されてしまい、なかなか消えなかったりしますよね・・・。

$ rmdir -p
rmdir: missing operand
Try `rmdir --help' for more information.

そんな時は削除対象のファイル/ディレクトリの前に -- をつけてあげると削除できます。

$ rmdir -- -p
$

という誰でも知ってそうなプチTipsでした(´•ω•`)

4
4
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?