Browse Source

Scripts from documents added

Jovian (Darkside) 6 years ago
commit
d32a7b1df0
9 changed files with 46 additions and 0 deletions
  1. 7 0
      dccheck
  2. 4 0
      dcpull
  3. 4 0
      dcpush
  4. 7 0
      locjvsync
  5. 1 0
      macdarkside
  6. 1 0
      permissionlink.txt
  7. 6 0
      testfish
  8. 12 0
      upoff
  9. 4 0
      usbpush

+ 7 - 0
dccheck

@@ -0,0 +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"
+echo "[dccheck] Files to push :"
+rsync -parv -n /home/jovian/Documents/ jovian-hersemeule.eu:~/Documents/ -e "ssh -p 7025"
+echo "[dccheck] Check terminated (no file was transfered)"

+ 4 - 0
dcpull

@@ -0,0 +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"
+echo "[dcpull] Pull terminated."

+ 4 - 0
dcpush

@@ -0,0 +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"
+echo "[dcpush] Push terminated."

+ 7 - 0
locjvsync

@@ -0,0 +1,7 @@
+#!/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.

+ 1 - 0
macdarkside

@@ -0,0 +1 @@
+d8:cb:8a:38:11:c1

+ 1 - 0
permissionlink.txt

@@ -0,0 +1 @@
+https://www.vidarholen.net/contents/junk/ubuntu_permissions.html

+ 6 - 0
testfish

@@ -0,0 +1,6 @@
+#!/usr/bin/fish
+echo [1] Woa.
+ls
+echo [2] Woa !
+ll
+echo [3] Wend.

+ 12 - 0
upoff

@@ -0,0 +1,12 @@
+#!/usr/bin/fish
+echo [UpOff] Upgrade and power-off system
+echo [UpOff] Info : do not forget SUDO ...
+
+echo [UpOff] Updating repos ...
+sudo apt-get update
+
+echo [UpOff] Upgrading system ...
+sudo apt-get -y upgrade
+
+echo [upOff] Upgrade terminated. Good night !
+systemctl poweroff

+ 4 - 0
usbpush

@@ -0,0 +1,4 @@
+#!/usr/bin/fish
+echo Trying pushing documents to Blue USB3 Key ...
+rsync -arv /home/jovian/Documents/ /media/jovian/USB3_HERSE/Documents/
+echo Push terminated.