-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrsync.sh
executable file
·13 lines (13 loc) · 954 Bytes
/
rsync.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
ip="35.238.169.30"
rsync -av -e "ssh -i ~/.ssh/google_compute_engine" deps/ expo@$ip:resilientdb/deps;
rsync -av -e "ssh -i ~/.ssh/google_compute_engine" transport/ expo@$ip:resilientdb/transport;
rsync -av -e "ssh -i ~/.ssh/google_compute_engine" system/ expo@$ip:resilientdb/system;
rsync -av -e "ssh -i ~/.ssh/google_compute_engine" config.h expo@$ip:resilientdb/config.h;
rsync -av -e "ssh -i ~/.ssh/google_compute_engine" Makefile expo@$ip:resilientdb/Makefile;
rsync -av -e "ssh -i ~/.ssh/google_compute_engine" scripts/ expo@$ip:resilientdb/scripts;
rsync -av -e "ssh -i ~/.ssh/google_compute_engine" smart_contracts/ expo@$ip:resilientdb/smart_contracts;
#rsync -av statistics/ expo@$ip:resilientdb/statistics;
#rsync -av db/ expo@$ip:resilientdb/db;
rsync -av -e "ssh -i ~/.ssh/google_compute_engine" benchmarks/ expo@$ip:resilientdb/benchmarks;
rsync -av -e "ssh -i ~/.ssh/google_compute_engine" client/ expo@$ip:resilientdb/client;