7 lines
163 B
Bash
Executable file
7 lines
163 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
xkcdpass_res=$(xkcdpass --numwords=13 --delimiter=_ --case=capitalize)
|
|
|
|
shuf_res=$(shuf -i 100000-999999 -n1)
|
|
|
|
echo ${xkcdpass_res}_${shuf_res}
|