Monthly Archives February 2006

Debian Games

Here’s some command line magic to install lots of games on your Debian box: yes | \ for x in `apt-cache search game \ | sort \ | awk ‘BEGIN { FS = ” – ” } { print $1 }’`; do \ apt-get install $x; \ done