I'm currently trying to add a new command to Minix. I want to add a command named smile
, which I want to display continuously a smiling face :-)
the same way the command yes
do with y
.
I already created the smile
dir in src/commands, with smile.c and Makefile, and added smile
to src/commands/Makefile.
But after compiling I still get
# smile
smile: not found
Is there another file/header/script where I must add a reference to smile?
Thank you in advance!