Pass through unix shell pipe

bash, shell

Solution

You can use `cat`.

When `cat` is used without any command line arguments. It just copies the standard input to standard output.

Problem

What is the UNIX shell program that just returns input? For example ``` > echo "test" | $pass > test # output ```

Original source