xargs

Updated: 29 August 2026

xargs takes it’s own stdin and converts this into arguments for commands that cannot read stdin.


Display the contents of all files called conn.cfg.php

find . -name 'conn\.cfg\.php' | xargs cat

Leave a comment