#!/usr/bin/perl -Tw use strict; print $#ARGV; die "where are those args again?\n" unless ($#ARGV > 0); exit; #### where are those args again?
-1