nomsu/lib/tools/list.nom
Bruce Hill a1849da175 Autoformat (mostly just to do with the new
blank-line-after-end-of-multi-indent-block rule
2019-03-27 15:22:46 -07:00

20 lines
500 B
Plaintext

#!/usr/bin/env nomsu -V7.0.0
###
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 "Currently Installed:"
for $f in ($packages, lines):
if ($f != ""):
$f = ($f, with "%.nom$" -> "")
say " * \$f"