#!/bin/sh
#
# Generate the filelist for homedir backups
# It will be executed from the homedir

find . \
          -name '.' \
       -o -path './.adobe' -prune \
       -o -path './Desktop/Trash' -prune \
       -o -path './faxsent' -prune \
       -o -path './.java' -prune \
       -o -path './.kde' -prune \
       -o -path './.mozilla' -prune \
       -o -path './mp3' -prune \
       -o -path './music' -prune \
       -o -path './.openoffice' -prune \
       -o -path './photo' -prune \
       -o -path './scripts' -prune \
       -o -path './.svn-settings' -prune \
       -o -path './.sword' -prune \
       -o -path './.thumbnails' -prune \
       -o -path './temp' -prune \
       -o -path './tmp' -prune \
       -o -path './.vlc' -prune \
       -o -path './.yammi' -prune \
       -o -path './Xprintjobs' -prune \
       -o -print0
