Quote:
Quote:
I have a script that kills the player, runs rsync (as a client) and then kills bash, but it gets stuck with rsync still running


The simple solution for your particular problem might be to killall rsync, although I don't understand why rsync does not exit when it is finished.

Pim


It requires killall -9 rsync, but how can the script run this? Since rsync never exits, the script never gets to its next line, until rsync is manually killed.

Even if I could, I wouldn't like it as a solution, I'd much rather find out why rsync has this problem and fix it. Ha, if it's possible.