93d656e86e
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
13 lines
171 B
Bash
Executable file
13 lines
171 B
Bash
Executable file
#!/bin/sh
|
|
|
|
case $(hostname) in
|
|
kr)
|
|
other="ikn.ethz.ch"
|
|
;;
|
|
|
|
ikn)
|
|
other="kr.ethz.ch"
|
|
;;
|
|
esac
|
|
|
|
rsync -av --delete --exclude .electricsheep ~/ $other:
|