9 lines
139 B
Bash
Executable file
9 lines
139 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if command -v offlineimap &> /dev/null; then
|
|
offlineimap
|
|
fi
|
|
|
|
if command -v vdirsyncer &> /dev/null; then
|
|
vdirsyncer sync
|
|
fi
|