mirror of
https://github.com/hak5/nano-tetra-modules.git
synced 2025-10-29 16:58:09 +00:00
10 lines
133 B
Bash
Executable File
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
|