Macでコマンドから複数のファイルの拡張子を一括に変更する方法
Mar 12, 2015AD:
こんな感じのファイル郡を一括にhtmlからphpに変更したい場合
1 2 3 4 |
$ ls index.html test.html contactus.html |
解決方法
1 2 3 |
$ for f in *.html; do mv $f ${f%.html}.php; done |
Related posts
AD:
No Comments, Comment or Ping
Reply to “Macでコマンドから複数のファイルの拡張子を一括に変更する方法”
You must be logged in to post a comment.