duckscriptsdk 0.11.1

The duckscript SDK.
Documentation
```sh
pid = spawn [--silent] [--input value] command [args]*
```

Executes the provided native command and arguments.<br>
It will not wait for the process to finish and will return the process pid.

### Parameters

* Optional --silent flag to suppress any output.
* --input - Optional content to be sent to the child process input stream.
* The command to execute and its arguments.

### Return Value

The process pid.

### Examples

```sh
pid = spawn echo test

echo PID: ${pid}
```