#!/data/data/com.termux/files/usr/bin/sh set -e -u show_help() { echo 'Usage: pkg command [arguments]' echo '' echo 'A tool for managing packages. Commands:' echo '' echo ' files ' echo ' install ' echo ' list-all' echo ' list-installed' echo ' reinstall ' echo ' search ' echo ' show ' echo ' uninstall ' echo ' upgrade' exit 1 } if [ $# = 0 ]; then show_help; fi CMD="$1" shift 1 case "$CMD" in f*) dpkg -L $@;; h*) show_help;; add|i*) apt update; apt install $@;; list-a*) apt list $@;; list-i*) apt list --installed $@;; re*) apt install --reinstall $@;; se*) apt update; apt search $@;; sh*) apt show $@;; un*|rem*|rm|del*) apt remove $@;; up*) apt update; apt full-upgrade;; *) echo "Unknown command: '$CMD' (run 'pkg help' for usage information)";; esac