Learn more about cloning repositories
You have read-only access
#!/bin/sh
candidate="$1"
lzip=`which $candidate 2>/dev/null`
if [ ! -x "$lzip" ]; then
lzip=`which lzip 2>/dev/null`
# echo nothing: no suitable lzip found
exit 1
fi
echo $lzip
Everything looks good. We'll let you know here if there's anything you should know about.