Written by Luca Scherer in the first year of his studies. (Repository structure was chosen for teaching purposes)
...
$
$ echo Hello
Hello
$ expr 1 + 3
4
$ A=5
$ echo $A
5
$ echo ${A}BC
5BC
$ A=$A$A
echo $A
55
$ cat &
$ pkill cat
$ echo Hello > test.txt
$ cat - < test.txt
Hello
$ echo Hello | tr l L
HeLLo
- Clone https://github.com/LucaSchere/unix-shell.git
- Install GCC
- Use
maketo compile the project:
make
./shellHave fun!