Hey guys. I'm able to send Rails consoles to the background with CTRL+Z . However, when I bring back the console with "fg", the console's no longer responsive.
It doesn't respond to normal commands, or even "quit" or CTRL+C. I have to background it again with CTRL+Z , and then kill it with "kill %1".
Here's an example:
[nickh@chameleon ~/foo] jobs
[nickh@chameleon ~/foo] script/console
Loading development environment (Rails 2.3.5)
>> 1
=> 1
>>
[1]+ Stopped script/console
[nickh@chameleon ~/foo] jobs
jobs
[1]+ Stopped script/console
[nickh@chameleon ~/foo] fg
script/console
1
quit
^C
^Z
[1]+ Stopped script/console
[nickh@chameleon ~/foo] jobs
[1]+ Stopped script/console
[nickh@chameleon ~/foo] kill %1
[1]+ Terminated script/console
[nickh@chameleon ~/foo] jobs
[nickh@chameleon ~/foo]
Might anyone know how to fix this?
Thanks!