Shell is a simulator of Linux's shell.
List of commands:
- cat : Concatenate and print (display) the content of files.
# The command line must be done in the main directory
# Compile the source files
javac -classpath src src/*.java
# Run the source files
java -cp src/ Shell
-
'cat' command:
- Display all files of same type
- Display multiple files
- Concatenate multiple files
- Add options
-
A list of commands to implement:
- 'ls'
- 'cp'
- 'mv'
- 'pwd'
- 'cd'
- 'mkdir'