1
0
Prechádzať zdrojové kódy

Documents path now realtive with the wave char.

Jovian (Darkside) 6 rokov pred
rodič
commit
98a07c08a9
3 zmenil súbory, kde vykonal 4 pridanie a 4 odobranie
  1. 2 2
      Useful/dccheck
  2. 1 1
      Useful/dcpull
  3. 1 1
      Useful/dcpush

+ 2 - 2
Useful/dccheck

@@ -1,7 +1,7 @@
 #!/usr/bin/fish
 echo "[dccheck] Detect differences between remote Jupyter Raspberry Pi and current computer."
 echo "[dccheck] Files to pull :"
-rsync -parv -n jovian-hersemeule.eu:~/Documents/ /home/jovian/Documents/ -e "ssh -p 7025"
+rsync -parv -n jovian-hersemeule.eu:~/Documents/ ~/Documents/ -e "ssh -p 7025"
 echo "[dccheck] Files to push :"
-rsync -parv -n /home/jovian/Documents/ jovian-hersemeule.eu:~/Documents/ -e "ssh -p 7025"
+rsync -parv -n ~/Documents/ jovian-hersemeule.eu:~/Documents/ -e "ssh -p 7025"
 echo "[dccheck] Check terminated (no file was transfered)"

+ 1 - 1
Useful/dcpull

@@ -1,4 +1,4 @@
 #!/usr/bin/fish
 echo "[dcpull] Trying pulling documents from remote Jupyter Raspberry Pi ..."
-rsync -parv jovian-hersemeule.eu:~/Documents/ /home/jovian/Documents/ -e "ssh -p 7025"
+rsync -parv jovian-hersemeule.eu:~/Documents/ ~/Documents/ -e "ssh -p 7025"
 echo "[dcpull] Pull terminated."

+ 1 - 1
Useful/dcpush

@@ -1,4 +1,4 @@
 #!/usr/bin/fish
 echo "[dcpush] Trying pushing documents to remote Jupyter Raspberry Pi ..."
-rsync -parv /home/jovian/Documents/ jovian-hersemeule.eu:~/Documents/ -e "ssh -p 7025"
+rsync -parv ~/Documents/ jovian-hersemeule.eu:~/Documents/ -e "ssh -p 7025"
 echo "[dcpush] Push terminated."