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