Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions content/pages/environment/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -565,3 +565,25 @@ Add contributed Examples by first opening the "Examples..." submenu from the Fil
## Export

The [Export information and Tips](https://github.com/processing/processing/wiki/Export-Info-and-Tips) page on the Processing Wiki covers the details of exporting Applications from Java mode.

## Command Line Interface (CLI)

Run sketches from the terminal using Processing's Command Line Interface (CLI).

*Windows (PowerShell)*
```
processing.exe --help
```

*Linux*
```
processing --help
```

*macOS*
```
cd /Applications/Processing.app/Contents/MacOS
./Processing --help
```

_**Note:** On macOS, the executable lives inside the `.app` bundle, so that's why there is a command to navigate to it's folder first. On Windows and Linux, Processing is typically added to your PATH by default, so no navigation is needed. _