Java (1.7 or later)
To compile the code, run build the JShell in IntelliJ
click run in IntelliJ.
Or in terminal, go to build/classes/java/main and run
$ java driver/JShell
List of commands available
- !
- cat
- cd
- cp
- echo
- exit
- find
- get
- history
- load
- ls
- man
- mkdir
- mv
- popd
- pushd
- pwd
To read the documentation of a specific command
$ man [command]
#example:
$ man ls
To write to a file using echo:
$ echo "hello world" > file1
To append to a existing file: To write to a file using echo:
$ echo "good bye" >> file1