/Shell

Primary LanguageJava

Shell

Overview

Shell is a simulator of Linux's shell.

Features

List of commands:

  • cat : Concatenate and print (display) the content of files.

Instructions

# 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

TODOS

  • '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'