Command line interpreter for UNIX-like systems;
Unix command line interpreter in development.
make
to build program../run
make clean
to clean files.
aninterpreter (master) $ make
gcc -Wall -c main.c
gcc -o run main.o
aninterpreter (master) $ ./run
shhh> ls
Makefile README.md main.c main.o run
shhh> ^C
aninterpreter (master) $ make clean
rm *.o run
aninterpreter (master) $ ls
Makefile README.md main.c
aninterpreter (master) $