#!/bin/sh

if ! cd ~/quelle; then
    echo "Cannot chdir" >&2
    exit 1
fi

lftp -c '
    open sftp://ziel
    cd /
    mirror --reverse --exclude=\.svn
'
