7 lines
54 B
Bash
7 lines
54 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
while true; do
|
||
|
mbsync -a
|
||
|
sleep 5m
|
||
|
done
|