mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
9 lines
120 B
Bash
9 lines
120 B
Bash
#!/bin/bash
|
|
|
|
if [ -f $(pgrep offlineimap) ]; then
|
|
offlineimap -o
|
|
echo "Sync begun."
|
|
else
|
|
echo "Sync in progress."
|
|
fi
|