summaryrefslogtreecommitdiff
path: root/regress/simulation/perlcheck
blob: b0a2bc51715243d91b0eefe7a05d5325beee9855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
#
# $FML: perlcheck,v 1.1 2001/09/23 11:24:58 fukachan Exp $
#

lib=''

for dir in ../../*/lib ../../fml/libexec
do
	lib="$lib -I $dir"
done

for x in $*
do
   perl $lib -cw $x
done

exit 0;