blob: 28a3bad507eb37364a0226bd21efadf4e559b29d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/bash
[ $# -lt 1 ] && echo "missing dstination" && exit 1
DST=$1
tar \
--exclude "$HOME/local" \
--exclude "$HOME/usr/git" \
--exclude "$HOME/usr/media" \
--exclude "$HOME/.ccache" \
--exclude "$HOME/.gems" \
--exclude "$HOME/.local/share/Trash" \
--exclude "$HOME/.local/share/Steam" \
-cvzf $DST $HOME/
|