#/bin/sh # (c) July 2001 Thomas Guettler http://www.thomas-guettler.de # This script is in the public domain # Feedback is welcome # # This script makes a tgz of the most important files of # my Home-Directory set -e TEMPFILE=`tempfile` (cd $HOME tar -czf $TEMPFILE .Xresources .bash_profile .bashrc .emacs* .xemacs* \ .inputrc .mail-* .muttrc \ .signature .ssh scripts \ firma/vortraege/tipps/tipps-und-tricks.html doc/words.txt \ ) FILE=$USER-home.tgz cp $TEMPFILE $FILE echo "Created $FILE"