A new slashdot low?
Slashdot stories can be annoying and petty at the best of times, but an article today regarding a Microsoft employee who has gotten adult measels is definately a new low. One of my colleagues had this recently - its damn serious, not something to make fun of. At least some of the folks commenting on the article see it the same way.
(2005-08-26 02:43:32.0)PermalinkComments [2]
Quick ksh tip
Very quick ksh tip which can be handy when your developing a script, if you want to check that the syntax of a ksh script is okay without executing it, just add a set -n to the top of the script. From the ksh(1) manpage ....
-n Reads commands and check them for syntax
errors, but do not execute them. Ignored for
interactive shells.