The easiest way to do this is going to be with a little shell script, actually. Assuming you have these four jobs scheduled, here's all you have to do.
First, open the Terminal application. Then, type:
Code:
crontab -l | pbcopy
(Copy and paste that line so you get it right.)
That'll put some stuff on your clipboard. Open Text Edit with a new file, and paste.
In there, you'll see a number of lines that look something like this:
Code:
30 21 * * 1,2,3,4,5 open file:///Users/dnanian/Library/Application\%20Support/SuperDuper\%21/Scheduled\%20Copies/Smart\%20Update\%20test\%20from\%20Macintosh\%20HD.sdsp/Copy\%20Job.app
These are the parts of the crontab that schedule your backup.
At the top of the file add, on a line by itself:
Then, remove any blank lines. Edit the start of each line to remove everything up to the "open" (leaving the open and what follows it).
Finally save the result to your desktop (for now), with an appropriate name (like "BackupNow").
Then, in terminal, enter (each line on its own line, followed by Return, substituting appropriately):
Code:
cd ~/Desktop
chmod +x "the-name-of-the-file-you-entered-before"
You're done!
Now, when you double-click that file, it'll automatically queue up all of those backups and they'll run, one after the other.
Hope that helps!