ディレクトリ配下のファイル内容を全て表示させてtmp.txtに保存するワンライナー
find . -type f ! -path "*/node_modules/*" ! -path "*/.git/*" ! -path "*/.github/*" ! -path "*/__pycache__/*" ! -path "*/build/*" ! -path "*/dist/*" ! -path "*/wheels/*" ! -path "*/.venv/*" ! -name "*.py[oc]" ! -name "*.egg-info" ! -name "uv.lock" ! -name "package-lock.json" ! -name "*.csv" ! -name ".DS_Store" -exec sh -c 'echo "ファイル名: $1"; cat "$1"' _ {} \; | tee /dev/tty > tmp.txt