mirror of https://github.com/Chizi123/Scripts.git

Joel Grunbaum
2021-07-27 42a36d0938727cc94d085a898f3ac85207dde2d3
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
 
if [ "$1" = "pull" ]; then
    rclone sync GoogleDrive:/Database.kdbx /tmp/
elif [ "$1" = "push" ]; then
    rclone sync /tmp/Database.kdbx GoogleDrive:/
    rm -rf /tmp/Database.kdbx
else
    echo "Usage: $0 pull|push"
    exit 1
fi