2016-05-19 10:44:11 +00:00
|
|
|
execline is a very light non-interactive scripting language,
|
|
|
|
which is similar to /bin/sh. Simple shell scripts can be
|
|
|
|
easily rewritten in the execline language, improving performance
|
2003-10-24 21:41:31 +00:00
|
|
|
and memory usage. execline was designed for use
|
2016-05-19 10:44:11 +00:00
|
|
|
in embedded systems, but works on most Unix flavors.
|
2003-10-24 21:41:31 +00:00
|
|
|
|
2016-05-19 10:44:11 +00:00
|
|
|
execline features conditional loops, getopt-style option handling,
|
|
|
|
filename globbing, and more. Meanwhile, its syntax
|
|
|
|
is far more logical and predictable than the shell's syntax,
|
2003-10-24 21:41:31 +00:00
|
|
|
and has no security issues.
|
|
|
|
|
2018-09-18 18:21:06 +00:00
|
|
|
WWW: https://www.skarnet.org/software/execline/
|