mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
13 lines
185 B
Bash
Executable File
13 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
offlineimap -o
|
|
while :
|
|
do
|
|
if [ -f $(pgrep offlineimap) ]; then
|
|
offlineimap -o
|
|
echo "OfflineIMAP sync complete."
|
|
else
|
|
echo "OfflineIMAP already running."
|
|
fi
|
|
sleep 60
|
|
done
|