16 lines
276 B
Bash
16 lines
276 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# need to hop? this script copies the important stuff.
|
||
|
|
||
|
tar \
|
||
|
--exclude={node_modules,target,dist,cache} \
|
||
|
-cvf \
|
||
|
${TAR_FILE:-backup.tar} \
|
||
|
~/.ssh \
|
||
|
~/.config \
|
||
|
~/.mozilla \
|
||
|
~/Documents \
|
||
|
~/Pictures \
|
||
|
~/code \
|
||
|
~/environments
|