diff --git a/content/pages/environment/index.mdx b/content/pages/environment/index.mdx index 5ac8d093..f65fa1a7 100644 --- a/content/pages/environment/index.mdx +++ b/content/pages/environment/index.mdx @@ -588,4 +588,22 @@ cd /Applications/Processing.app/Contents/MacOS ./Processing --help ``` +For command-line sketch options, run `processing cli --help`: + +*Windows* +``` +processing cli --help | more +``` + +*Linux* +``` +processing cli --help +``` + +*macOS* +``` +cd /Applications/Processing.app/Contents/MacOS +./Processing cli --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._