Geekology describes a nice osx builtin command to create screen captures: screencapture. I wanted to create a screenshot of a mouse interaction. That requires some sort of a delay after initiating the capture. The “-T” option described facilitates this. It looks like the -T option is missing in the tiger version of this utility. Of course you can use ‘sleep’ to wait a couple of seconds:
$ sleep 5;screencapture -C ~/Desktop/screenshot.png
See also my previous post on screenshots.

