can't control pianobar after using echo
- by Ubuntuusr22222
I have a script that starts pianobar (pandora player) and autoloads into tty2 after booting.
I'm running Ubuntu Precise 12.04.
it's a pretty simple script:
#!bin/bash
sleep 5
echo "2" | pianobar
This works, it selects station 2 and begins playing... but when I try to type in commands it doesn't work (like pushing "p" for pause.) It'll show the letter for a second, then hide it. If I try to exit with ctrl+z it just sits there and I can't use it at all.
If I run this it works fine but doesn't auto-select the second station:
#!bin/bash
sleep 5
pianobar
Is there anyway to write this so it will automatically input "2" and then allow me to control from there?
Or am I stuck with having to select 2 every time I boot up?