LoginSignup
0
0

More than 5 years have passed since last update.

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

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