in reply to Bash script from CGI Perl

Something like this?

my $q = CGI->new; if ( $q->param('btn_name') ) { system('sh myscript'); }

Replies are listed 'Best First'.
Re^2: Bash script from CGI Perl
by realn0whereman (Novice) on Jul 14, 2010 at 20:29 UTC
    That might work. going to try and implement, will post back with results (i haven't written perl in YEARS).