7 lines
154 B
Plaintext
7 lines
154 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
#This prints random words from the Linux dictionary.
|
||
|
|
||
|
echo "$(shuf -n 32 /usr/share/dict/words --random-source=/dev/urandom | tr '\n' ' ')"
|
||
|
|