I have a file a :
$ cat a abcd kaka
when using the command:
$ grep -e '[ad]' a abcd kaka
This works well, but why is this command not suitable?
$ grep -e '[\x61-\x74]' a grep: Invalid range end $ grep -e '[\u0061-\u0074]' a grep: Invalid range end
source share