Name: Anonymous 2012-12-11 2:16
#!/bin/sh
for l in {a..z}; do
for r in {a..z}; do
name=$l$r
if command which -s $name; then
echo $name
else
# TODO -- Look the program up in the package manager
fi
done
doneI like to go around trying out all the two-letter commands on the systems I use. Or at least reading their man pages to see if they do anything fun.