No, cron is like the Windows Scheduler, it runs commands at certain times.
If you just want to create a script that you can execute manually, all you need to do is create a plain text file containing the commands, and then make it executable using chmod u+x filename.
Then you type /full/path/to/filename to run it, or just filename if it is located somewhere in your PATH.
Annihilannic.