Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
        print "cmd was: $cmd\n";
    }
    print "loop exited\n";
    
  2. or download this
    my $cmd="";
    until ($cmd !~ /^\s*$/){print "enter cmd: "; $cmd=<STDIN>;}
    
    chomp $cmd;
    print "cmd was: $cmd\n";