Added 'list' tool and improved install/uninstall

This commit is contained in:
Bruce Hill 2019-01-21 16:32:13 -08:00
parent a9f8d2d8ac
commit a596195f6c
3 changed files with 22 additions and 1 deletions

View File

@ -41,7 +41,7 @@ download [
sh> $cmd
..if it fails:
say ("
Sorry, the uninstall failed. You may need to re-run as root with `sudo` in front of the command.
Sorry, the install failed. You may need to re-run as root with `sudo` in front of the command.
")
exit 1

20
lib/tools/list.nom Normal file
View File

@ -0,0 +1,20 @@
#!/usr/bin/env nomsu
#
A tool to list installed third party Nomsu packages
Usage:
nomsu -t list
use "filesystem"
use "commandline"
use "shell"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
command line program with $args:
$packages = (=sh "ls \$(NOMSU PACKAGEPATH)")
say "Installed packages:"
for $f in ($packages, lines):
if ($f != ""):
$f = ($f, with "%.nom$" -> "")
say " * \$f"

View File

@ -1,3 +1,4 @@
#!/usr/bin/env nomsu
#
A tool to uninstall third party Nomsu packages (the inverse of the install tool)