#!/bin/sh

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

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