Running 2 scripts one after the other using cron

I would like to run two scripts using cron one immediately after the other. Is it enough to put them one after another in the cron file to run at the same time, or will this cause them to run concurrently?

It would cause them to run concurrently. You can always cron the first script and launch the second one from the end of that.

Thanks, I will give that a try.

You could also set the cron job to be two scripts such as

30 * * * * /path/to/first_script ; /path/to/second_script

That seems to work. Thanks peterro.