aboutsummaryrefslogblamecommitdiff
path: root/test/bash
blob: 60616c951906bc13f2414f856769941b6ca3a9cf (plain) (tree)
1
2
3
4
5
6

                                                             

                              

                                                   
#!/bin/sh
for bash in bash/* bash/bashrc.d/* bash/bash_profile.d/* ; do
    [ -e "$bash" ] || continue
    bash -n "$bash" || exit
done
printf 'All bash(1) scripts parsed successfully.\n'