ACPI administration advocacy advocacy opinion apache audio authentication bash calendar commandline cron database debian desktop development disk dvd emacs email exim files firefox firewall ftp fun grub hardware hardware html images installation ipod kde knoppix laptop latex mplayer multimedia mysql network nfs openoffice opinion opinion pdf perl php postgresql printing scripting scsi security shell sitenews slackware spam ssh subversion svk t23 t43 text thinkpad thunderbird time users windows wine wordpress xwindows xwindows
One thing that I can never remember in Bash is redirecting output. This is particularly important if a command, say a test script, is outputting all sorts of information and you need it in a file to examine later.
To redirect STDOUT to a file use '>':
somecommand > file
Of course the normal output is all very well, but usually it is the errors that are more important. To redirect STDERR to a file use 2>
somecommand 2> file
To capture both STDOUT and STDERR use '&>'
somecommand &> file