I wish to grep a line staring which start with Alphabet followed by 5 numbers.
MY approach is eg
'A12345'
'A123456'
output should be only line starting with Alphabet followed by 5 numbers
ie 'A12345'
My approach : it doesn't work
grep -E '[A-Z]''[0-9]{5}'