or download this
my @restargs = @ARGV[1..$#ARGV]; # An array of all the args except the
+ first (uses array slice)
my $restargs = "@ARGV"; # A string containing all the args concatenate
+d together with spaces between them
my $restargs = "@ARGV[1..$#ARGV]"; # As above excluding the first argu
+ment