in reply to Re: ARGV Problem
in thread ARGV Problem
Here is a sample run.#!/perl/bin/perl -w # IEL - Interface Engine Lite # IELmqsvr - Interface MQ Series Server script # - This script establishes a tcp/ip socket with the rece +iving system and interagates # the MQ Series Queue for transactions to send. # - Creation Date - 8/30/05 # - Modification Log - # # This section declares system Modules and Variables require 5.002; use IO::Select; use Env; use IO::Handle; use strict; use Errno qw(EAGAIN); use IO::Socket; use sigtrap; my ($INAME); $INAME = $ARGV[0]; print STDOUT "ARGV = @ARGV - 0 = $ARGV[0]\n"; exit;
Once again any help will be appreciated.C:\IEL\bin>ARGVtst.pl LHW_TST Use of uninitialized value in concatenation (.) or string at C:\IEL\bi +n\ARGVtst. pl line 23. ARGV = - 0 = C:\IEL\bin>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: ARGV Problem
by ikegami (Patriarch) on Jan 06, 2006 at 16:39 UTC | |
by tjdmlhw (Acolyte) on Jan 06, 2006 at 17:45 UTC | |
by ikegami (Patriarch) on Jan 06, 2006 at 17:49 UTC | |
|
Re^3: ARGV Problem
by tjdmlhw (Acolyte) on Jan 06, 2006 at 16:35 UTC |