summaryrefslogtreecommitdiff
path: root/ycurses/scripts/checkperl.sh
blob: 418087ff5038ffbf58c8502417e3cd9c89690020 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# The ycurses 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