I'm trying to abbreviate a regex in a grep. I need to match exactly six spaces followed by an alpha character. This works:
grep "^\s\s\s\s\s\s[[:alpha:]]" <filename>
This does not:
grep "^[[:space:]]{6}[[:alpha:]]" <filename>
What am I doing wrong?