LoginSignup
5
2

More than 5 years have passed since last update.

Bareword "" not allowed while "" in use at (eval 2) line 1.

Posted at

rename コマンドで Bareword "..." not allowed while "strict subs" in use at ... と怒られる場合の回避方法
環境は Mac OSX

rename hoge_hoge fuga_fuga *.png

を実行すると

Bareword "hoge_hoge" not allowed while "fuga_fuga" in use at (eval 2) line 1.

アンダースコア"_"が文法エラーと怒られる

これを回避するには

rename s/hoge_hoge/fuga_fuga/g *.png

とすればよい。
vimの置換と同じで割と良いですね

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