blob: ac0a26e1fe9ec535cf5c6f6b1ec5bf0aabf1f638 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
#
# Date: 2009-12-04
# Author: Ole Kristian Lien
# License: GNU General Public License
#
# Check if a program is installed
if [ -z "$1" ]; then
echo "Usage: $0 <program>"
exit 1
fi
type -P $1 &>/dev/null || { echo "Error: This script require $1, but it's not installed. Aborting." >&2; exit 1; }
|