From 164faaf1b348b9559b6fb9f5df3624ea046d85b0 Mon Sep 17 00:00:00 2001 From: TriantaTV Date: Sat, 29 Oct 2022 23:25:39 -0500 Subject: [PATCH] Final README change --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 4ba49f7..23bb923 100644 --- a/README.md +++ b/README.md @@ -16,3 +16,19 @@ Run `pish.out` in bin/ to run the program ## Alternative Run `make exec` in the base folder to compile and run program + +# What works and doesn't +Successfully tested: + As long as the command works alone in Pish, .pishrc is fully functional + Single commands such as "echo hello world" run fine + Pipes split commands into parts + Signals are ignored + Built in commands such as cd and exit work + Commands are forked and then exec'd after being split by pipes if any + Pish prompt works and parses properly + +Unsuccessfully tested: + Redirection operators are found, but not acted upon + Pipes don't redirect i/o into other commands (i.e. ps aux | grep 'Z') + Environmental variables being handled by Pish +