You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
205 B
18 lines
205 B
15 years ago
|
#!/bin/sh
|
||
|
|
||
|
test -f perlbin && rm perlbin
|
||
|
|
||
|
for p in `echo $PATH | tr ":" " "`
|
||
|
do
|
||
|
if [ -x $p/perl ]
|
||
|
then
|
||
|
if $p/perl -e 'require 5.000;'
|
||
|
then
|
||
|
echo $p/perl > perlbin
|
||
|
exit 0
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
done
|
||
|
exit 1
|