aboutsummaryrefslogblamecommitdiff
path: root/check/zsh
blob: 39a6c1e9153545ea1dfa352467d3ce4ab69fbd7b (plain) (tree)
1
2
3
4
5
6





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