Please tell me that I am missing something really obvious here:
$ cat ~/bashplay/f #!/bin/bash read -p 'RDY> ' x echo $x $ ~/bashplay/f RDY> direct execution direct execution $ ssh somehost ~/bashplay/f indirect via ssh indirect via ssh
Note the missing "RDY>" hint when using ssh. I see the same thing in python when using the "readline" package. Does anyone know why?
source share