NAME

ngs - Next Generation Shell.

SYNOPSIS

ngs script_name.ngs

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

DESCRIPTION

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

This project contains the language part which is under development. The interactive part will be dealt with later. This manual covers both implemented and unimplemented parts.

OPTIONS

Given script_name runs the script.

Using expression 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.

-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")

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.

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 1.

ENVIRONMENT

FILES

bootstrap.ngs

Typically located in NGS_DIR. Responsible for bootstrapping NGS.

stdlib.ngs

Located in NGS_DIR. Standard library. Defines many methods and autoloading behaviour.

SEE ALSO

ngslang(1) NGS language tutorial
ngssyn(1) NGS language syntax
types.html NGS language pre-defined types
methods.html NGS language pre-defined methods

THANKS

Thanks to Guy Egozy, Avishai Ish-Shalom and other friends for ideas and feedback.