The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678 #!/bin/shfor test in *.t ;do if [ $test = "pod.t" -o $test = "pod_coverage.t" ]; then continue fi perl -w $test 1done
#!/bin/sh
for test in *.t ;do
if [ $test = "pod.t" -o $test = "pod_coverage.t" ]; then
continue
fi
perl -w $test 1
done