aboutsummaryrefslogtreecommitdiff
path: root/lint/games
blob: 1802b3fda79eb03d22090743ea21f69da315651a (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh
for game in games/* ; do
    if sed 1q "$game" | grep -q -- 'sh$' ; then
        printf '%s\n' "$game" 
        shellcheck -- "$game" 
    fi 
done