Skip to content

Instantly share code, notes, and snippets.

@Torenable
Forked from semeltheone/knime Batch execute
Last active March 11, 2021 19:23
Show Gist options
  • Save Torenable/1f368b87b08ac831769d06fdd3b46cc3 to your computer and use it in GitHub Desktop.
Save Torenable/1f368b87b08ac831769d06fdd3b46cc3 to your computer and use it in GitHub Desktop.
Knime Execute Workflows from the Commandline
# Windows:
knime.exe -consoleLog -noexit -nosplash -application org.knime.product.KNIME_BATCH_APPLICATION -workflowFile="PathToYourWorkflow.zip" -destFile="OutputPathToYourWorkflow.zip"
# Mac
/Applications/KNIME\ 3.5.3.app/Contents/MacOS/Knime -nosplash -application org.knime.product.KNIME_BATCH_APPLICATION -workflowFile="PathToYourWorkflow.zip" -destFile="OutputPathToYourWorkflow.zip"
# Linux
knime -nosplash -application org.knime.product.KNIME_BATCH_APPLICATION -workflowFile="PathToYourWorkflow.zip" -destFile="OutputPathToYourWorkflow.zip"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment