#!/usr/bin/perl -l # Check if all the bin and script dirs in %Config are the same. use strict; use warnings; use Config; @_ = qw/bin binexp initialinstalllocation installbin installscript installsitebin installsitescript scriptdir scriptdirexp sitebin sitebinexp sitescript sitescriptexp vendorbin vendorbinexp/; printf "%-24s %-100s\n", $_, $Config{$_} for @_;