Посмотрев образец ожидаемого результата (добавив больше общего c решения), если я получу его правильно (вы хотите напечатать данные после цифр), не могли бы вы попробовать следующее.
awk 'match($0,/[0-9]+:[0-9]+:[0-9]+ +/){print substr($0,RSTART+RLENGTH);next} 1' Input_file
Объяснение: Добавление подробного объяснения для вышеуказанного кода.
awk ' ##Starting awk program from here.
match($0,/[0-9]+:[0-9]+:[0-9]+ +/){ ##Using match function which matches regex of digits colon digits colon digits then space in line.
print substr($0,RSTART+RLENGTH) ##If a match is found then it should print sub-string of line starting from RSTART till RLENGTH.
next ##next will skip all further statements from here.
}
1 ##1 will print edited/non-edited lines here.
' Input_file ##Mentioning Input_file name here.