Untitled
unknown
sh
2 years ago
295 B
54
Indexable
#!/bin/bash
if [ $# -lt 1 ]; then
echo "Usage: $0 <c file(s)>"
exit 1
fi
for c_file in "$@"; do
echo ""
echo "--------"
echo "$c_file"
echo "--------"
perl "C:\Scripts\betty-doc.pl" "$c_file"
perl "C:\Scripts\betty-style.pl" "$c_file"
done
Editor is loading...