#!/bin/sh set -eu find . -name '*.sh' -print0 | xargs -0 awk 'FNR==1 && /^#!\/bin\/sh$/ { print FILENAME }' | xargs shellcheck