in reply to Korn Shell Wrappers for Perl Module Functions?
doit.ksh
#!/bin/ksh export FOO=123 export BAR=234 ./doit.pl [download]
#!/usr/bin/perl -w use strict; #do something with $ENV{FOO} and $ENV{BAR} [download]