JShell is a command-line tool that is located in the /bin folder. The syntax for this tool is as follows:
jshell <options> <load files>
As you can see in the following screenshot, there are several options that can be used with this tool:
You have already seen the -h option, which we executed with jshell -h. This provided the listing of JShell options.
To log into your JShell, you can simply use the jshell command. You will see that the prompt in the command window changes accordingly:
Exiting the shell is as easy as entering /exit. Once inside the JShell, you can enter any of the following commands:
Command | Functionality |
/drop |
Use this command to delete a source entry that is referenced by name or id. Here is the syntax: /drop <name or id> |
/edit |
With this command, you can edit a source entry using name or id reference... |