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
Related Notes#
References#
Tags#
#cli