aboutsummaryrefslogtreecommitdiff
path: root/check/sh
blob: 47e41c771d27fab2dece7743e72651856fa5f22e (plain) (blame)
1
2
3
4
5
6
#!/bin/sh
for sh in sh/* sh/profile.d/* ; do
    [ -f "$sh" ] || continue
    sh -n "$sh" || exit
done
printf 'All sh(1) scripts parsed successfully.\n'