コンテンツにスキップ

shell ディレクトリ内の全てのファイルに対してコマンドを実行#

find <directory_path> -name <file_name_regex> | while read file
do
    command <option>
done

## 例
## find ./docs/publish -name '*.md' | while read file
## do
##  sed -ie "s|## |### |g" "${file}"
## done

References#

Tags#

  • #cli