cat

Updated: 16 July 2026

Append contents of all matching files to sum.log

cat *.log >> sum.log

Overwrite sum.log with contents of all matching files

cat *.log > sum.log

Top and tail a file with some additional text

cat <(echo @startyaml) deploys.yaml <(echo @endyaml)

Leave a comment