Reputation: 1201
When using the JShell, how do I exit it back to the CMD line?
I have already tried ctrl + x and just writing quit, but to no joy.
Upvotes: 117
Views: 35533
Reputation: 69
You can either use /exit or /ex to exit from jshell.
The command is mentioned in jshell manual. Manual can be accessed by typing /help.
Upvotes: 1
Reputation: 31888
You can use the JShell command to exit as:
/exit
You can also type the end-of-file character, which is Ctrl-D on Linux systems.
Side note: Interestingly, with the use of command abbreviations for input shortcuts:-
/ex
(of course /exi
) also, resolves into the same command.
To see a list of JShell commands like this one, use the /help
command.
Upvotes: 198
Reputation: 119
inorder to exit from jshell you can use the command /exit
Upvotes: 3