-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed
Labels
REPLJulia's REPL (Read Eval Print Loop)Julia's REPL (Read Eval Print Loop)
Milestone
Description
After 1f3289c this is what I get for every shelled-out command (except cd
):
julia> ;cd /tmp
/tmp
julia> ;pwd
bash: cannot set terminal process group (-1): Inappropriate ioctl for device
bash: no job control in this shell
/tmp
As can be seen, the commands do work, they just keep printing this annoying error at every invocation. From what I understand, this is a consequence of using the -i
option (which is not used in cd
). A quick googling around didn't help solving the issue (I tried using the +m
option, to no effect). The only fix I found is removing the -i
option.
Metadata
Metadata
Assignees
Labels
REPLJulia's REPL (Read Eval Print Loop)Julia's REPL (Read Eval Print Loop)