7 lines
114 B
Bash
7 lines
114 B
Bash
|
NAME=$1
|
||
|
|
||
|
tar cvfj ${NAME}.tar.bz2 \
|
||
|
--exclude=.git \
|
||
|
--exclude="conf/sources/*/destination/*" \
|
||
|
"$NAME"
|