pablo-lamtenzan / miniShell

Implementing (most of) Bash from scracth, supports term-caps, expansion, job control and conditionals.
0 stars 0 forks source link

Builtin cd pipes interactions #19

Closed pablo-lamtenzan closed 3 years ago

pablo-lamtenzan commented 3 years ago

Builtin cd should not change directory in a piped command

$ cd .. | ls

pablo-lamtenzan commented 3 years ago

Fixed using a piped cmd flags and checking before using chdir if the directory exists. If is exists and the flags is active NOT USE chdir. Else use it to potentially catch errors in pipes cmds