I wrote a script and I want it to be pipeable in bash. Something like:
echo \"1stArg\" | myscript.py
Is it possible? How?
Everything that reads from stdin is "pipeable". Pipe simply redirects stdout of former program to the latter.