16:32 < Uranellus> how can I pipe two inputs to an app? i know how to use echo asdf | command .. but echo asdf|echo asdf|command doesn't work, any help? 16:32 -!- usn [n=usn@p54932FE4.dip0.t-ipconnect.de] has joined #bash 16:33 < TheBonsai> Uranellus: since echo doesn't care for the input you pipe to it... 16:33 < koala_man> usn: { a; b; } | c 16:33 < koala_man> Uranellus: 16:33 < TheBonsai> Uranellus: try {.... ok, just try what koala_man said 16:33 < hq4ever> echo asdf|(cat; echo something)|cat 16:34 < snacky> heh 16:34 -!- Bartman007 [i=devnull@evil.pengu.in] has left #bash [] 16:34 < snacky> hq4ever: that's poetic 16:34 < hq4ever> :) 16:35 < Uranellus> koala_man: { echo a ; echo b } | cat doesn't work ,, echo {a,b} | cat neither 16:35 < Uranellus> hq4ever: works :)