String manipulation

Hi,

I have the string like this ". Start : 06:53:11 - MON JUL 05, 2010"
I need to print the part "06:53:11 - MON JUL 05, 2010"

How i can do this?

Thanks,
Lenova

echo ". Start : 06:53:11 - MON JUL 05, 2010" | cut -d":" -f2
echo ". Start : 06:53:11 - MON JUL 05, 2010" | cut -d":" -f2-