A piggy bank of commands, fixes, succinct reviews, some mini articles and technical opinions from a (mostly) Perl developer.

Tailing all the logs files

Truncate all the log files:
find . -name "*.log" -exec cp /dev/null {} \;

Tail all the log files at once:
tail -f $(find . -name "*.log")