7 lines
318 B
Bash
7 lines
318 B
Bash
|
echo "Rasplice to Password hyperconverged-cloud enabled integration tool"
|
||
|
echo "select minimum word lenght:"
|
||
|
read lenght
|
||
|
echo "select number for words to integrate:"
|
||
|
read words
|
||
|
|
||
|
curl -s http://rasplice.contaminati.net/sproloquio.txt | grep -e "[^\ ]\{$lenght,\}" | shuf -n $words | sed 's/^\(.\)/\U\1/' | paste -sd ""
|