#!/usr/bin/perl -w use strict; use CGI; my $page = new CGI; print $page->header(); print $page->start_html(); my $command = qq(script/that_performs/the/basckup.pl &); system ($command); print qq(Finished); print $page->end_html();