e303cbe543
git-subtree-dir: parser/tests/yaml-test-suite git-subtree-split: ccfa74e56afb53da960847ff6e6976c0a0825709
19 lines
252 B
Bash
Executable file
19 lines
252 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
(
|
|
while true; do
|
|
id=$(
|
|
cat /dev/urandom |
|
|
LC_ALL=C tr -cd A-HJ-NP-Z2-9 |
|
|
fold -w4 |
|
|
grep '[A-Z]' |
|
|
grep '[0-9]' |
|
|
head -n1
|
|
)
|
|
|
|
[[ -e src/$id.yaml ]] || break
|
|
done
|
|
|
|
echo "$id"
|
|
)
|
|
|