0
0

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.

Retina用画像ファイル名を通常画像ファイル名に変換するBashワンライナー

0
Posted at

hoge@2x.pngというファイルを作ってもらい、ツールで一括縮小した後でファイル名を一括変更するbashワンライナー。

for name in `ls -1`; do newName=${name%@2x.png}; mv ${name} "${newName}.png"; done
0
0
0

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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?