On Mon, Feb 08, 2021 at 02:43:48PM -0600, boB Stepp wrote:

killall mbsync &>/dev/null; /usr/bin/mbsync -a -qq

Maybe it's an stupid idea, but perhaps mbsync is starting to run so fast
that the killall kills it?  You could try replacing the semicolon wich a
couple of ampersand signs to make sure that mbsync is started only after
killall has exited?

        killall mbsync &>/dev/null && /usr/bin/mbsync -a -qq
        
Cheers.
Ángel

Reply via email to