1 2 3 4 5 6 7 8 9 10
#!/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