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