If you need to time something and don’t want to use any fancy GUI apps, you can use the following command in the Bash shell (Mac OS X or Linux terminal):
date ; read -n 1 -s ; dateExplanation: Print out time and date, wait for a single key to be pressed (-s prevents that key from being shown), and print out time and date again.
time read