in reply to Help: Launch generated perl statements from a perl script

If you declare your variables as package-variables then you can use "do", e.g.:
use strict; our $v1="Hello"; our $v2="There"; do "launch_child.pl";
See "perldoc -f do".