nzk-help
Code projects (python & simple)
#!/bin/bash
# nzk-help: Display help for nzk-installed apps
if [ $# -eq 0 ]; then
echo "Usage: nzk-help <appname>"
echo "Available apps with help files:"
if [ -d /bin/nzk-apps/helpfiles ]; then
ls /bin/nzk-apps/helpfiles
else...