10 lines
141 B
Bash
Executable file
10 lines
141 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# fetch your mail at regular intervals
|
|
# Derek Stevens <nilix@nilfm.cc>
|
|
# MIT License
|
|
|
|
while true; do
|
|
mbsync -a
|
|
sleep 5m
|
|
done
|