Sergio Callegari schrieb: > if [ $# = 0 ] ; then > tmpcopy=$(mktemp rezip.zip.XXXXXX) > cat > $tmpcopy > filename="$tmpcopy" > else > tmpcopy="" > filename="$1" > fi > > workdir=$(mktemp -d -t rezip.workdir.XXXXXX) > curdir=$(pwd) > > cd $workdir > unzip $UNZIP_OPTS "$curdir/$filename" > zip $ZIP_OPTS "$curdir/$filename" . > cd $curdir > rm -fr $workdir > if [ ! -z "$tmpcopy" ] ; then > cat $filename > rm $tmpcopy > fi You don't need a temporay zip filename in filter mode: unzip $UNZIP_OPTS /dev/stdin # works for me, but not 100% portable zip $ZIP_OPTS - . # writes to stdout > then put in your .git/config something like > > [filter "opendocument"] > clean = "rezip -p ODF_UNCOMPRESS" > smudge = "rezip -p ODF_COMPRESS" Is the smudge filter really necessary? Can't OOo work with files at compression level 0? -- Hannes -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html