You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
216 B
14 lines
216 B
#!/bin/sh
|
|
|
|
candidate="$1"
|
|
|
|
lzip=`which $candidate 2>/dev/null`
|
|
if [ ! -x "$lzip" ]; then
|
|
lzip=`which lzip 2>/dev/null`
|
|
if [ ! -x "$lzip" ]; then
|
|
# echo nothing: no suitable lzip found
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
echo $lzip
|
|
|