diff options
| author | Paul Buetow <paul@buetow.org> | 2010-11-21 16:56:10 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2010-11-21 16:56:10 +0000 |
| commit | c67ed39bc994a0aef06454c1e3044e79f712b739 (patch) | |
| tree | 4397f736b9161f50cd0b00cdcfd2b0acc7c1af7e /scripts/checkperl.sh | |
| parent | 93ce2024a62325cbae5f2f6fd2155a4ef89cee63 (diff) | |
Diffstat (limited to 'scripts/checkperl.sh')
| -rwxr-xr-x | scripts/checkperl.sh | 13 |
1 files changed, 13 insertions, 0 deletions
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 |
