What is the UNIX shell program that just returns input?
For example
> echo "test" | $pass
> test # output
You can use cat.
When cat is used without any command line arguments. It just copies the standard input to standard output.
cat -cat .
There's also tac which performs the reverse of cat.
tac prints the lines in reverse order.