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