Jim Hall is an open source software advocate and developer, best known for usability testing in GNOME and as the founder + project coordinator of FreeDOS. At work, Jim is CEO of Hallmentum, an IT executive consulting company that provides hands-on IT Leadership training, workshops, and coaching.
Jim Hall
| Connect jimfhall
Minnesota
Authored Comments
I'll add that I adapted the Numbers game for my article. The show does the Numbers game with two sets of small numbers 1-10, and one set of large numbers: 25, 50, 75, and 100. But 'seq 25 25 100' doesn't show off the 'seq' command very well. :-) To do the Numbers game more like the show, do this:
seq 25 25 100 | shuf | head -2
(seq 1 10 ; seq 1 10) | shuf | head -4
echo 'and the target is:'
echo $(( RANDOM % 800 + 200 ))
Kevin, I love that you're writing these articles. Keep it up!