やりたいこと
ディレクトリ以下の全てのファイルの拡張子を一括で変換したい
ターミナルでコマンド実行
以下は、.htmlファイルを.blade.phpファイルに変換するときの例
find /path/to/your/directory -name "*.html" -exec sh -c 'mv "$0" "${0%.html}.blade.php"' {} \;
ディレクトリ以下の全てのファイルの拡張子を一括で変換したい
以下は、.htmlファイルを.blade.phpファイルに変換するときの例
find /path/to/your/directory -name "*.html" -exec sh -c 'mv "$0" "${0%.html}.blade.php"' {} \;
コメント