#!/bin/sh if ! command -v splint 2> /dev/null then echo "Please install splint (http://splint.org/)!" exit 1 fi find . -type f -iname '*.c' | xargs splint