0
2

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 3 years have passed since last update.

【ワンライナー】半角スペースを含むファイル名をアンダースコアに置換する

Posted at

なぜ必要だったか

株式会社 テスト.pngのようなファイル名を mvで一括処理する時にファイル名に半角スペースが入っていたので、

mv 株式会社 テスト.png とコンピュータに解釈され、株式会社というファイルはないと怒られた。なのでファイル名の半角スペースを削除しておきたかった。

手順

renameコマンドを、Homebrew でインストールします。(Mac以外の方は適宜読み替えてください)

$ brew install rename

下のコマンドでカレントディレクトリ以下の、ファイル名の半角スペースをアンダースコアに置換します。

$ find . -type f | rename "s/ /_/;"

結果

無事 株式会社_テスト.png というファイル名に置換できました。

0
2
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
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?