When I do ;less /usr/share/dict/words for example, bad things happen. The julia REPL process gets a SIGHUP (or something) that was meant for the less process and ends up sleeping, dumping me into the outer shell that I started julia from. This is why the C repl does the $shell -c "($cmd) && true" business – or is this a different issue?
When I do
;less /usr/share/dict/words
for example, bad things happen. Thejulia
REPL process gets aSIGHUP
(or something) that was meant for theless
process and ends up sleeping, dumping me into the outer shell that I startedjulia
from. This is why the C repl does the$shell -c "($cmd) && true"
business – or is this a different issue?