xargs

Updated: 23 September 2024

Build and execute command lines from standard input.

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

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

Leave a comment