14 lines
171 B
Text
14 lines
171 B
Text
|
#!/bin/sh
|
||
|
|
||
|
case $(hostname) in
|
||
|
kr)
|
||
|
other="ikn.ethz.ch"
|
||
|
;;
|
||
|
|
||
|
ikn)
|
||
|
other="kr.ethz.ch"
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
rsync -av --delete --exclude .electricsheep ~/ $other:
|