Problem in running CMIS Workbench console to shell script

cancel
Showing results for 
Search instead for 
Did you mean: 
cyrose22
Active Member II

Problem in running CMIS Workbench console to shell script

Hi,

   Im done with my code using CMIS GroovyConsole, how to 

make it into shell script? so that it can be executed automatically?

When I've tried to make it into an executable batch file it prompts an error. Is it correct? or is there anther way ?

3 Replies
jpotts
Professional

Re: Problem in running CMIS Workbench console to shell script

First, make sure you have Groovy installed. Can you do groovy CMISEXTRACTIONTEXT.groovy, for example?

If you want to make the file executable you can add "#!/usr/bin/groovy" to the first line of your script. Then make sure you've granted "execute" permissions to the file with chmod u+x CMISEXTRACTIONTEXT.groovy. Now you should be able to run ./CMISEXTRACTIONTEXT.groovy.

One thing to be aware of...in the Groovy Console in CMIS Workbench there are a few imports and utility scripts that get imported so you'll want to make sure those are accessible by your script if your script depends on them.

cyrose22
Active Member II

Re: Problem in running CMIS Workbench console to shell script

Hi Jeff Potts ,

What's the error all about? Thanks

cyrose22
Active Member II

Re: Problem in running CMIS Workbench console to shell script

Jeff Potts‌ what if it's dependent in the WORKBENCH, is there a possible to execute this automatically?