#!/bin/sh
# Script to recompress gz to xz
# Author: Georg Pfuetzenreuter <mail+opensuse@georg-pfuetzenreuter.net>

# expect data on stdin
test -t 0 && exit 1

# dump gzip and recompress with xz (defaults to stdout)
zcat | xz "$@"
