A Linux shell written in C with piping and redirect capabilities.
Compile on a Linux machine.
$ makeCall the shell with:
$ ./shell [-t] [-c]
# -t Do not display prompt.
# -c Do not print colors.$ exit
$ cd dir
$ command [< input_file] [| command] ... [> output_file] [2> output_file] [>> output_file]
# < Redirect input.
# > Redirect output (opens file with O_TRUNC).
# 2> Redirect errors (opens file with O_TRUNC).
# >> Redirect output (opens file with O_APPEND).MIT