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

Joel Grunbaum
2021-08-24 40f5e4e11932669aeb0838612fea9bebd5c5182c
commit | author | age
ae94c2 1 #!/bin/bash
JG 2
3 if [ "$1" = "pull" ]; then
4     rclone sync GoogleDrive:/Database.kdbx /tmp/
5 elif [ "$1" = "push" ]; then
6     rclone sync /tmp/Database.kdbx GoogleDrive:/
7     rm -rf /tmp/Database.kdbx
8 else
9     echo "Usage: $0 pull|push"
10     exit 1
11 fi