From dee37a84ae65ba8bd1e0dab6132955bbc195fa57 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 21 Nov 2010 16:22:46 +0000 Subject: --- scripts/checkperl.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 scripts/checkperl.sh (limited to 'scripts/checkperl.sh') diff --git a/scripts/checkperl.sh b/scripts/checkperl.sh new file mode 100755 index 0000000..fa5e98f --- /dev/null +++ b/scripts/checkperl.sh @@ -0,0 +1,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 -- cgit v1.2.3