You mean what /dev/null can be used for?
you can e.g. run commands with output sent to /dev/null, so you keep just the return code.
Code:
if which >/dev/null 2>/dev/null rxvt; then
rxvt &
else
xterm &
fi
runs rxvt if it exists and xterm otherwise.
best,
Ott