## run()


Run a shell command and return the exit code.


Usage


``` python
run(cmd)
```


## Parameters


`cmd: str`  
The command to run.


## Returns


`int`  
The exit code of the command.


## Examples

``` python
>>> run("echo hello")
```

0
