/usr/src/perl/pod/perlfaq8/How_do_I_make_a_system_exit_on.pod

How do I make a system() exit on control-C?

You can't. You need to imitate the system call (see the perlipc manpage for sample code) and then have a signal handler for the INT signal that passes the signal on to the subprocess.