```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.
* **
The process pid.
```sh
pid = spawn echo test
echo PID: ${pid}
```