From d7297c87285b0020ab2063f6dd2030dcc920d8da Mon Sep 17 00:00:00 2001 From: sharadvc <264168532+sharadvc@users.noreply.github.com> Date: Sun, 13 Sep 2026 08:27:02 +0000 Subject: [PATCH] docs: add processing cli --help examples on environment page Add platform-specific examples for invoking processing cli --help in the Command Line Interface section. Fixes processing/processing-website#667 --- content/pages/environment/index.mdx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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._