I have this following file:-
$ cat numbers
a1
12
12345
123456
19816282
1@$%6
I am using grep "^[0-9]\{1,6\}$" numbers which is giving me the following results:-
12
12345
I was expecting 1@$%6 also in the results. Please correct me if I am wrong?
