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