Category: Mv RSS Rename Files Jan 05, 2016 | Comments ファイル名一括置換 「rename」を使えばよいとのことだったので、 1 $ rename 'IMG_' 'img_0' ~/photo/20151227/*.JPG しかし、 1 Bareword "IMG_" not allowed while "strict subs" in use at (eval 1) line 1. と言われて動かなかったので、 1 find /home/u-ryo/photo/20151227/ -maxdepth 1 -name "IMG_*.JPG"|sed 'p;s|IMG_\([0-9]*\).JPG|img_0\1.jpg|g'|xargs -n2 mv -i とすれば動いた。
Rename Files Jan 05, 2016 | Comments ファイル名一括置換 「rename」を使えばよいとのことだったので、 1 $ rename 'IMG_' 'img_0' ~/photo/20151227/*.JPG しかし、 1 Bareword "IMG_" not allowed while "strict subs" in use at (eval 1) line 1. と言われて動かなかったので、 1 find /home/u-ryo/photo/20151227/ -maxdepth 1 -name "IMG_*.JPG"|sed 'p;s|IMG_\([0-9]*\).JPG|img_0\1.jpg|g'|xargs -n2 mv -i とすれば動いた。