scripts/bash/deprecated/backupconfs

12 lines
286 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
2014-11-05 14:58:31 +01:00
mkdir -p ~/.backups
cd ~/.backups
mkdir -p lakka
cd lakka
rsync -Paz --exclude='~/.local/*' --exclude='~/.pyenv/*' --exclude='*git*' lakka:~/ .
cd ..
2014-11-05 14:58:31 +01:00
mkdir -p hilla
cd hilla
rsync -Paz --exclude='~/.local/*' --exclude='~/.pyenv/*' --exclude='*git*' hilla:~/ .
cd ..