Tag Archives: *nix

Redirect, Pipe, and Tee

Redirect – ls command creates file called file_list.txt instead of sending to stdout: $ ls > file_list.txt Redirect Append – ls command appends file_list.txt instead of sending to stdout: $ ls >> file_list.txt Pipe – sends output of ls command … Continue reading

Posted in Information | Tagged , , , , | Leave a comment