#!/bin/csh -f
# tics2msec - convert file to msec

foreach i ($*)
    dm x1/16 < $i > tmp
    mv tmp $i
end
