Run autosemantic scripts in a Kubernetes context, or locally.
run [command]Place scripts in catalog/.
For positional argument discovery, use the following format for script headers:
#! /usr/bin/env nix-shell
#! nix-shell -i bash -p inetutils
#
## Traceroute to a host
# host: Host to traceroute to
# timeout: Timeout in seconds [30]Where:
#! /usr/bin/env nix-shelllet's Nix know what's coming#! nix-shell -i bash -p inetutilsTells nix-shell to:- Use
bashas the shell - Make
inetutilsavailable in said shell
- Use
## Traceroute to a hostis the subcommand description# timeout: Timeout in seconds [30]is:timeoutis the flag nameTimeout in secondsis the flag description30is the default value