mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-18 21:44:02 +03:00
* Add chargen * Restructure * Remove redundant line * Correct directories * Scale up the numbers
8 lines
123 B
Bash
Executable File
8 lines
123 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
for (( VAR=1; VAR<=1000000000; VAR++ ))
|
|
do
|
|
shuf -er -n3 {A..Z} {a..z} | tr -d '\n'
|
|
echo
|
|
done
|