Pretty cool in principle, although the default word list on my system is awful for wordle.
Linux
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
-
As mentioned above, this script is using the word list contained in
/usr/share/dict/words
.If your distro doesn't include this installed, you can install the respective package (
wordlist
,words
) using the respective command (apt
,pacman
). -
ADDITIONALLY, if someone wishes to play the game using a different word list, they can do so, editing LINE 17of the
wordy.sh
WORD_LIST="/usr/share/dict/words"
change to
WORD_LIST="/path/to/prefered/wordlist"
Oh the word list issue is a matter of great debate. I opted for using the default word list just to avoid this matter (thinking that this list is something fixed and undebatable). It might be a good idea to make the word list configurable, so that each user may use their prefered word list. Stay tuned, I might do it the very near future.
Pretty cool dude, nice work :)
Thanks!