#!/bin/sh

if [ $# -lt 2 ]; then
	echo usage: $0 inputuri outputuri
	exit 1
fi

exec tracesplit -z 1 -Z gzip "$1" "$2"
