summaryrefslogtreecommitdiff
path: root/scripts/checkperl.sh
blob: fa5e98fe7d767f2ed65d6859796768c672fa6ff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# The yChat Project (2005)
#
# This scripts checks for a perl installation 

if ! which perl >/dev/null
then
 echo You need to have Perl in your PATH!
 exit 1
fi

echo Using `which perl`
exit 0