grep -E '(..).*' input
A expressão é assim:
NODE EXPLANATION
( group and capture to :
. any character except \n
. any character except \n
) end of
.* any character except \n (0 or more times
(matching the most amount possible))
what was matched by capture