diff options
| -rw-r--r-- | README.md | 10 | ||||
| -rw-r--r-- | nosh.c | 2 |
2 files changed, 8 insertions, 4 deletions
@@ -2,7 +2,11 @@ a mini POSIX C shell for \*NIX dudes. ### help screen -```c -// todo -``` + +built-ins: +- `echo` -> outputs a string of text, doesn't need `\"` enclosure. + supports '-c' for output without `\\n'` +- `clear` -> clears screen (and scrollback) +- `cd` -> change working directory +- `help` -> prints this screen @@ -70,7 +70,7 @@ int main(void) "clear -> clears screen (and scrollback)\n" "cd -> change working directory\n" "help -> prints this screen\n" - "\ngithub repo: github.com/jstmaxlol/nosh\n" + "\nrepo: kuronavipad.xantu-ling.ts.net/cgit/nosh.git\n" ); } else { |