Advertisement
Advertisement
| 05.09.2008 at 01:29PM PDT, ID: 23390740 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: |
#!/usr/bin/perl
use Getopt::Long;
$tmpfile = "/u/oper/ahawkes/tmp/\$USER.txt";
print "\n";
my ($help, @compressed, @text);
##### get options #####
usage() if ( ! GetOptions('help|?' => \$help, 'z|zcat|zip|compressed=s{2}' => \@compressed, 't|text:s{2}' => \@text, )
or defined $help );
###---code continues---###
|