- #!/bin/sh
- echo Trying locally pushing documents to Jupyter computer ...
- rsync -parvn /home/jovian/Documents/ 192.168.0.10:~/Documents/ -e "ssh -p 7025"
- echo Push terminated.
- echo Trying locally pulling documents from Jupyter computer ...
- rsync -parvn 192.168.0.10:~/Documents/ /home/jovian/Documents/ -e "ssh -p 7025"
- echo Pull terminated.
|