nano-tetra-modules/CursedScreech/includes/scripts/checkDepends.sh

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