Every two minutes every day, you'll need a cron entry like:
00,02,04,06,08.......,58 * * * 0-6 /<your script>
to edit the crontab, use crontab -e (an alternative is to edit a separate file then save it and issue a crontab <filename> so that the new file becomes the new crontab). You should be presented with a vi environment (if not do an export EDITOR-vi before editing the file) in which you can enter the baove commands. Then save with a wq! to activate it. Be aware that cron inherits no environment variables, so it may be necessary to add these explicitly if required. For information, I find it easier to add:
#Crontab field order:
#minute (0-59),
#| hour (0-23),
#| | day of the month (1-31),
#| | | month of the year (1-12),
#| | | | day of the week (0-6 with 0=Sunday).
#| | | | | commands
at the top of the crontab so that there is no chance of my getting the various options muddled. HTH.