21bashThis demonstrates piping both standard output (stdout) and standard error (stderr) from one command to another using the |& operator in Bash.COMMAND_1 |& COMMAND_2bash internalfile and stream operationsstream redirection and pipingpiping with stderr
22bashThis demonstrates appending a string to a file using output redirection.echo "foo" >> bar.txtbash internalfile and stream operationsstream redirection and pipingoutput redirection
23bashThis demonstrates piping in Bash.head -n 5 sales.csv | tail -n 1bash internalfile and stream operationsstream redirection and pipingpiping