in reply to Manipulating Output

if the data file exists and you want to keep the same filename (this will keep the original with .bak suffix):
> perl -pi.bak -e "s/^.*://" data.txt
or if you would like to create a new file to hold the output:
> perl -pe "s/^.*://" data.txt > output.txt
--
.dave.