in reply to Re: Passing the contents of a file in a "system" call to a .ksh script
in thread Passing the contents of a file in a "system" call to a .ksh script
my @args = ("/home/admin/bin/email.ksh", "@LOG", "Web Server Issue", " +PROD", "/home/admin/logs/check_jvm/EmailAlert.log");
ITYM
my @args = ("/home/admin/bin/email.ksh", @content, "Web Server Issue", + "PROD", "/home/admin/logs/check_jvm/EmailAlert.log");
(and the @content up at the top by $LOGFILE doesn't do anything either...)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Passing the contents of a file in a "system" call to a .ksh script
by Bloodnok (Vicar) on Jan 09, 2009 at 10:41 UTC | |
by fullermd (Vicar) on Jan 09, 2009 at 11:41 UTC |