10 lines
139 B
Plaintext
10 lines
139 B
Plaintext
5 years ago
|
#!/bin/sh
|
||
|
|
||
|
if command -v offlineimap &> /dev/null; then
|
||
|
offlineimap
|
||
|
fi
|
||
|
|
||
|
if command -v vdirsyncer &> /dev/null; then
|
||
|
vdirsyncer sync
|
||
|
fi
|