こんな感じのファイル郡を一括に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 |
こんな感じのファイル郡を一括に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 |