Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #55.0K
2 Posted Topics
[quote=Rashakil Fol;135794]You can pass command line arguments by changing @ARGV. It is best to make a local copy. For example, inc.pl: [code]#!/usr/bin/perl use strict; # just for kicks for my $item (@ARGV) { print "$item\n"; # print what we think are our command line args! }[/code] tmp.pl: [code]#!/usr/bin/perl use strict; …
Hi All, This is my first posting :) I urgently need some help!! I am trying to call a perl script from another and capture the exit status (whether successful or not). How should I go about it? Please help.... Thanks in advance, Bucchi
The End.
Bucchi