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

Joel Grunbaum
2021-07-13 a857671265d7a70996311c9a106bc79a8b52b37c
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