in reply to upgrade perl w/same config?

I have used the following script:

% perl -MConfig -lwe 'exec map $Config{"config_arg$_"}, 0..$Config{config_argc}'

if you want to add new arguments, try

% perl -MConfig -lwe 'exec +(map $Config{"config_arg$_"}, 0..$Config{config_argc}), @ARGV' -- -Dusedevel

Robin