If you only have a few minutes to schedule a job you might not feel like digging into cron for your kickoff tool - especially if you’ve never used it before. In fact, Apple is kind of discouraging the use of cron in favor of launchd these days.
If you came from Windows you might be happy to see OS X has the AT command you might be oh-so-familiar with. Until you realize Apple doesn’t really want you using that either. That’s a shame, because AT is quick and dirty and supports some simple syntax, like now + 3 hours, to set a time for kickoff. In fact, you can specify teatime as a time, which really means 4pm.
If you’re sleepy and want to schedule a job and you don’t want to mess around, iCal might be the answer. You can use the alarm feature of an appointment to run an Applescript. Just set the time and pick your script like you see in the picture.

Your script can be pretty simple. Something like the screenshot below should work. Just replace the text following “do script” in the double quotes with whatever your terminal needs require.

The articles linked above mention the downsides of cron and AT - mostly dealing with sleeping machines and hard drives that can’t rest because AT is frequently checking to see if it has anything to do. That’s why OS X doesn’t enable AT by default. If your machine will be sleeping when you need the command to run you can wake it up with the Energy Save in System Preferences.
No screencast for this one. If you want to shed any light on how you schedule your routine jobs let us know in the comments. As always, be careful with the Terminal. You can break something very easily!
More on Applescript