2017-11-16 16:42:22 +11:00

10 lines
133 B
Bash
Executable File

#!/bin/sh
testZip=$(opkg list-installed | grep 'zip')
if [ -z "$testZip" ]; then
echo "Not Installed";
else
echo "Installed";
fi