in reply to Re^2: The problem of "the" default shell
in thread The problem of "the" default shell

use the multi-argument form of system, exec, open to invoke bash:

You can even pass args without escaping this way:

system( 'bash', '-c', '...', 'dummy', @args );