The elinks
program takes over the terminal to let you browse the web. But its behavior in the context of job control is wonky.
If I CTRL-Z suspend an
elinks
session, and then try to resume it withfg
, it works.If I CTRL-Z suspend an
elinks
session, and then run some other program to completion (e.g.find
), and then try to resume it withfg
, it just printselinks
orelinks [the URL I invoked it with]
to STDOUT and hangs. Then if I to CTRL-Z suspend again andfg
a second time,elinks
resumes for real, taking over the screen.
What explains this behavior? Is there a way to fix it?
SIGSTOP
signal, and it could be related with your case... – May 08 '14 at 16:46