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

#!/bin/sh
for test in *.t ;do
if [ $test = "pod.t" -o $test = "pod_coverage.t" ]; then
continue
fi
perl -w $test 1
done