awarbler / yashd_project

0 stars 0 forks source link

Fix: need to split the command and handle piping by creating two child processes: one for the left-hand side of the pipe (e.g., ls), and one for the right-hand side (e.g., wc), with communication via the pipe. #38

Closed awarbler closed 1 month ago

awarbler commented 1 month ago

Ensure the pipe functionality is properly handling input and output redirection between commands. You are splitting the command string into cmd_left and cmd_right but are not properly handling the redirection flow.

awarbler commented 1 month ago

f60ee6f8dc33deca8ef139f35ec6010bdceb8de7 worked on it a little here