NGS version 0.2.17 manual

NAME

ngs - Next Generation Shell.

SYNOPSIS

ngs script_name.ngs [arguments]

ngs [-e|-E|-p|-pi|-pj|-ppj|-pl|-pjl|-pt] expression [arguments]

ngs [-h|–help]

DESCRIPTION

ngs is a Next Generation Shell. It has two main parts: the language and the interactive shell.

OPTIONS

Given script_name, runs the script. The script runs top to bottom. If the script defines main function/multimethod, it is automatically invoked (after the top-to-bottom run), with command line arguments converted to appropriate types. If no main is defined (or main did not match the arguments) and the result of top-to-bottom execution is a Namespace (ns { ... }) and at least one command line argument was passed, the first command line argument is taken as function/multimethod name in the Namespace to run.

If script_name is ., ngsfile is used as the script_name.

Using expression in the options described below is equivalent to running a script that consists of { expression }.

-e evaluates the expression.

-E prevents loading of stdlib.ngs and evaluates the expression.

-p prints the resulting expression value in a human readable NGS format.

-pi prints inspect(...) (detailed information) of the resulting expression value.

-pj prints the resulting expression value as JSON.

-ppj prints the resulting expression value as pretty JSON. Requires jq to be installed.

-pl prints elements of the result, one per line (mnemonic "print lines")

-pjl prints elements of the result, one per line as JSON (mnemonic "print JSON lines")

-pt prints the resulting expression value as a table.

-h and –help shows help

MOTIVATION

NGS tries to fill the void between classical shells such as bash and general-purpose programming languages such as Ruby, Python, Perl, Go. The shells are domain-specific languages but the domain has changed so classical shells are not optimal for today’s tasks. General-purpose languages on the other hand are not domain-specific so they are not good as shells and too verbose for system tasks scripting, not a good fit.

EXAMPLES

For examples, see ngstut(1).

EXIT STATUS

The exit code is whatever the running code (script_name or expression) returns using the following conversions:

In case of an uncaught exception, the exit code is 240. In cases where additional errors were encountered during exiting, the exit codes will be greater than 240, ngslang(1) has specific information on that.

ENVIRONMENT

FILES

stdlib.ngs

Packaged into ngs binary during build. Standard library. Defines many methods and autoloading behaviour.

SEE ALSO

ngstut(1)NGS language tutorial
ngslang(1)NGS language manual
ngswhy(1)Motivation behind creation of NGS
ngsstyle(1)Recommended style for NGS scripts

THANKS

Thanks to Zeev Glozman for Mac support, CMake contribution and other help.
Thanks to Ricardo Gomes for feedback, fixes to documentation, and other contributions.
Thanks to Guy Egozy, Avishai Ish-Shalom and other friends for ideas and feedback.
Thanks to Rui Chen for Homebrew related fixes and GitHub actions fixes.

AUTHORS

2015