Skip to content

Instantly share code, notes, and snippets.

@philippkueng
Last active December 24, 2015 21:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save philippkueng/6863338 to your computer and use it in GitHub Desktop.
Save philippkueng/6863338 to your computer and use it in GitHub Desktop.
Script to rsync all the resources from the first semester of CS at HSR
#!/bin/bash
# Before running
# --------------
#
# 1. Clone this repo
# 2. Mount smb://c206.hsr.ch/skripte on a Mac
# HS13
# rsync -avz /Volumes/skripte/Informatik/Fachbereich/Computernetze_1/ .
# rsync -avz /Volumes/skripte/Informatik/Fachbereich/Informations-_und_Codierungstheorie/ .
# rsync -avz /Volumes/skripte/Informatik/Fachbereich/Programmieren_1_Programmieren_mit_Java/ .
# rsync -avz /Volumes/skripte/Mathematik_Naturwissenschaften/Analysis_1_fuer_Informatiker/ .
# FS14
# rsync -avz /Volumes/skripte/Informatik/Fachbereich/Artificial_Intelligence_AI/ .
# rsync -avz /Volumes/skripte/Informatik/Fachbereich/Programmieren_2_Algorithmen_und_Datenstrukturen/ .
# rsync -avz /Volumes/skripte/Mathematik_Naturwissenschaften/Analysis_2_fuer_Informatiker/ .
# rsync -avz /Volumes/skripte/Informatik/Fachbereich/Computernetze_2/ .
# rsync -avz /Volumes/skripte/Informatik/Fachbereich/Cloud_Computing/ .
# rsync -avz /Volumes/skripte/Informatik/Fachbereich/Informationssysteme/ .
# rsync -avz /Volumes/skripte/Mathematik_Naturwissenschaften/Mathematische_Grundlagen_der_Informatik_2/ .
# HS14
rsync -avz /Volumes/skripte/Informatik/Fachbereich/User_Interfaces_1/ .
rsync -avz /Volumes/skripte/Informatik/Fachbereich/Software-Engineering_1/ .
rsync -avz /Volumes/skripte/Mathematik_Naturwissenschaften/Diskrete_Mathematik_fuer_Informatik_ .
rsync -avz /Volumes/skripte/Kommunikation_Wirtschaft_Recht/English_The_World_of_Science/ .
rsync -avz /Volumes/skripte/Kommunikation_Wirtschaft_Recht/Business_und_Recht_1/ .
rsync -avz /Volumes/skripte/Informatik/Fachbereich/Datenbanksysteme_1/ .
rsync -avz /Volumes/skripte/Informatik/Fachbereich/Projekt-_und_Qualitaetsmanagement/ .
rsync -avz /Volumes/skripte/Informatik/Fachbereich/Cloud_Infrastructure .
echo ""
echo "syncing done."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment