20161209
Ich habe mir eine Notiz gemacht, weil ich mein Wissen von "Perl" ablenken konnte.
Python verwendet 2 Serien als Beispiel
#!/bin/bash
function py () {
python -- <<'EOF' - "$@"
import sys
print sys.argv[1]
EOF
}
function ru () {
ruby -- <<'EOF' - "$@"
puts ARGV[0]
EOF
}
py python
ru ruby
$ echo python | python -c '
import sys
for i in sys.stdin:
print i,
'
$ echo python | python -c 'print raw_input()'