mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-01 00:19:22 +01:00
12 lines
286 B
Bash
Executable File
12 lines
286 B
Bash
Executable File
#!/usr/bin/env bash
|
|
mkdir -p ~/.backups
|
|
cd ~/.backups
|
|
mkdir -p lakka
|
|
cd lakka
|
|
rsync -Paz --exclude='~/.local/*' --exclude='~/.pyenv/*' --exclude='*git*' lakka:~/ .
|
|
cd ..
|
|
mkdir -p hilla
|
|
cd hilla
|
|
rsync -Paz --exclude='~/.local/*' --exclude='~/.pyenv/*' --exclude='*git*' hilla:~/ .
|
|
cd ..
|