Сгенерировать латинский алфавит
```shell; gutter: true; first-line: 1; highlight: [] $ echo {a..z} a b c d e f g h i j k l m n o p q r s t u v w x y z
```shell; gutter: true; first-line: 1; highlight: []
$ printf "%sn" {a..z} a b c d e f g h i j k l m n o p q r s t u v w x y z
shell; gutter: true; first-line: 1; highlight: []
$ for i in $(echo {a..z});do echo $i;done a b c d e f g h i j k l m n o p q r s t u v w x y z
Категории: HowTo