locjvsync 339 B

1234567
  1. #!/bin/sh
  2. echo Trying locally pushing documents to Jupyter computer ...
  3. rsync -parvn /home/jovian/Documents/ 192.168.0.10:~/Documents/ -e "ssh -p 7025"
  4. echo Push terminated.
  5. echo Trying locally pulling documents from Jupyter computer ...
  6. rsync -parvn 192.168.0.10:~/Documents/ /home/jovian/Documents/ -e "ssh -p 7025"
  7. echo Pull terminated.