#!/bin/ksh

# myrtpdump IP port filename

echo $1
echo $2
echo $3
rm ./$3
echo rtpdump -F dump -t 0.5 $1/$2 \> $3
rtpdump -F dump -t 0.5 $1/$2 > $3
