This node falls below the community's minimum standard of quality and will not be displayed.

Replies are listed 'Best First'.
Re: passing parameters
by amyarjun (Novice) on Apr 05, 2005 at 13:25 UTC
    Can you explain further what is required.
    here i give u the code to get data from command line.

    #!/usr/bin/perl -- print "Enter The Key\n"; my $key = <STDIN>; chomp($key); print "You have entered $key ";

    To execute anything to a application or services in system you can use system command.

    system "ps -C $var";