The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/bin/sh
for mod in blib/lib/Tk/*.pm; do
echo "********* $mod **************************"
perl -Mblib -Mstrict -w $mod 2>&1 | grep -v '^Using /'
echo
done