mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-03-13 11:38:16 +00:00
7 lines
154 B
Text
7 lines
154 B
Text
![]() |
#!/bin/bash
|
||
|
|
||
|
#This prints random words from the Linux dictionary.
|
||
|
|
||
|
echo "$(shuf -n 32 /usr/share/dict/words --random-source=/dev/urandom | tr '\n' ' ')"
|
||
|
|