aboutsummaryrefslogtreecommitdiff
path: root/scripts/warn-undocumented
blob: aa7d0f7e71d0f11800c9da5704ca0d1d07782927 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh
# look through all files for either @file or \file
for file in $@
do
	grep -c '[@\]file' "$file"  |\
	awk -F':' "\$1 == 0 {print \"Undocumented file: $file\"}"
done