2019-02-06 14:28:57 -08:00
|
|
|
#!/usr/bin/env nomsu -V6
|
2019-01-21 16:32:13 -08:00
|
|
|
#
|
|
|
|
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)")
|
2019-01-23 15:35:22 -08:00
|
|
|
say "Currently Installed:"
|
2019-01-21 16:32:13 -08:00
|
|
|
for $f in ($packages, lines):
|
|
|
|
if ($f != ""):
|
|
|
|
$f = ($f, with "%.nom$" -> "")
|
|
|
|
say " * \$f"
|