bpipe demo


#myInput
Listen for text updates on myInput, pipe them to less
bpipe -s "#myInput" -e "keyup" | less
#mySelect
Listen for change events on #mySelect
bpipe -s "#mySelect" -e "change" | less

#myDiv
Send data to #myDiv from echo
echo "hello there" | bpipe -s "#myDiv"