[
https://issues.apache.org/jira/browse/TINKERPOP-1879?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16339284#comment-16339284
]
ASF GitHub Bot commented on TINKERPOP-1879:
-------------------------------------------
Github user spmallette commented on the issue:
https://github.com/apache/tinkerpop/pull/791
What were you trying? seems to work for me:
```text
$ cat x.groovy
println "123"
$ bin/gremlin.sh -e x.groovy
123
$ bin/gremlin.sh -e=x.groovy
123
$ bin/gremlin.sh -i=x.groovy
\,,,/
(o o)
-----oOOo-(3)-oOOo-----
plugin activated: tinkerpop.server
plugin activated: tinkerpop.utilities
plugin activated: tinkerpop.tinkergraph
123
gremlin> :x
$ bin/gremlin.sh --interactive=x.groovy
\,,,/
(o o)
-----oOOo-(3)-oOOo-----
plugin activated: tinkerpop.server
plugin activated: tinkerpop.utilities
plugin activated: tinkerpop.tinkergraph
123
gremlin> :x
$ bin/gremlin.sh --execute=x.groovy
123
$ bin/gremlin.sh --execute x.groovy
123
```
> Gremlin Console does not resepect equal sign for flag argument assignments
> --------------------------------------------------------------------------
>
> Key: TINKERPOP-1879
> URL: https://issues.apache.org/jira/browse/TINKERPOP-1879
> Project: TinkerPop
> Issue Type: Bug
> Components: console
> Affects Versions: 3.2.7
> Reporter: stephen mallette
> Assignee: stephen mallette
> Priority: Minor
> Fix For: 3.2.8, 3.3.2
>
>
> In Gremlin Console, the command line parser does some extra work that Apache
> Commons CLI does not. That extra work isn't properly supporting a flag passed
> as follows:
> {code}
> bin/gremlin.sh --execute=script.groovy
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)