Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

getting multiple and variable input from the user

Status
Not open for further replies.

brittany1

Technical User
Aug 17, 2007
12
0
0
US
i want to write something that will accept multiple user input, then connect to a remote server and execute the commands entered. My question is : what is the best way to gather the users input. this is what I have so far .. just seems like theres a better way to do it ?

For instance when I run the program
Enter one command per line then press enter.
when you are complete entering data, press enter.
ifconfig
You typed: ifconfig
ls -l
You typed: ls -l
netstat -rn
You typed: netstat -rn

The following is what will be sent to the remote device.
ifconfig
ls -l
netstat -rn
Are these statments correct ? y or n ?





Perl:
#!/usr/bin/perl
##!c:\Perl\bin\perl.exe
use warnings;
use strict;
my @cmdlist;
my $cmd;
system("clear");
print "\nEnter one command per line then press enter.\n";
print "when you are complete entering data, press enter.\n";
    while (<>) {
        last if ($_ =~ /^\s*$/); # Exit if it was just spaces (or just an enter)
        print "You typed: $_";
        push @cmdlist, $_;
    }
    system("clear");
    print "The following is what will be sent to the remote device.\n" ;
    foreach (@cmdlist) {
    do
    print "$_";
    }
    print "Are these statments correct ? y or n ?\n" ;
~
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top