I'm wandering if there is a neat trick to pass data to a shell command via STDIN. The only thing I know how to do is either: 1. Write a bash script that accepts an input param and call this 2. put shell ("echo 'some text' | shellThing") Is there a neater way?