I need to create 26 files named a to z in single command. I thought touch command would be sufficient with the regex, but it doesn't expand [a-z] instead it creates a single file with name "[a-z]".
$ touch [a-z] Any way to achieve these?
Note:
$ bash -version GNU bash, version 4.3.30(1)-release (i686-pc-linux-gnu)