mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-01-14 08:36:31 +00:00
6 lines
154 B
Bash
Executable file
6 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' ' ')"
|
|
|