Moving 10+ GB files from one hard drive to another takes time, so I run mv with &. This doesn't work with fish; it freezes until the move is done.
Hi David, Do you have an `mv` function defined? The output of `type mv` will tell you. If you do, you are running into https://github.com/fish-shell/fish-shell/issues/238 which is a longstanding problem with fish shell, and you may be able to work around it by using `command mv ... &`, or removing the function. Hope that helps, David Adam zanchey@ucc.gu.uwa.edu.au
Hi David, Do you have an `mv` function defined? The output of `type mv` will tell you. If you do, you are running into https://github.com/fish-shell/fish-shell/issues/238 which is a longstanding problem with fish shell, and you may be able to work around it by using `command mv ... &`, or removing the function. Hope that helps, David Adam zanchey@ucc.gu.uwa.edu.au
Yep, I have alias mv=mv -i. Okay, at least I understand better and it's a known issue.