#!/bin/sh

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

exec tracesplit "$1" -f "$2" "$3"
