echo コマンドで標準入力を受け取る


こんにちは。
echo コマンドで標準入力を受け取るには、cat コマンド1の助けを借りると良いようです。

$ echo "hello" | echo $(cat)
$ echo "hello" | echo \"`cat`\"
"hello"