如何 "cancel" gremlin-console 中的错误并继续执行下一个命令而不退出?
How do I "cancel" an error in gremlin-console and continue with the next command without exiting?
在 gremlin-console
中,当我犯了如下例所示的语法错误时 - 我忘记了第二个引号 - 我不知道该输入什么 return 让我恢复正常提示gremlin>
。我键入的任何内容,包括 Ctrl+C
、Ctrl+U
都会继续 ......2>
,如下所示。
gremlin> g.V("
......1>
......1> "
......2> )
groovysh_parse: 1: expecting anything but ''\n''; got it anyway @ line 1, column 6.
g.V("
^
1 error
Type ':help' or ':h' for help.
Display stack trace? [yN]n
......2>
如何 "cancel" 出现错误并继续使用 gremlin-console 而不退出?
您需要 :clear
或 :c
,这会清除前一个命令在控制台内存中建立的任何缓冲区。使用 :?
获取有关可能对您有帮助的其他命令的更多信息。此外,请考虑阅读 The Gremlin Console 教程以获取有关控制台使用的更多提示。
在 gremlin-console
中,当我犯了如下例所示的语法错误时 - 我忘记了第二个引号 - 我不知道该输入什么 return 让我恢复正常提示gremlin>
。我键入的任何内容,包括 Ctrl+C
、Ctrl+U
都会继续 ......2>
,如下所示。
gremlin> g.V("
......1>
......1> "
......2> )
groovysh_parse: 1: expecting anything but ''\n''; got it anyway @ line 1, column 6.
g.V("
^
1 error
Type ':help' or ':h' for help.
Display stack trace? [yN]n
......2>
如何 "cancel" 出现错误并继续使用 gremlin-console 而不退出?
您需要 :clear
或 :c
,这会清除前一个命令在控制台内存中建立的任何缓冲区。使用 :?
获取有关可能对您有帮助的其他命令的更多信息。此外,请考虑阅读 The Gremlin Console 教程以获取有关控制台使用的更多提示。