Help for this page

Select Code to Download


  1. or download this
        return $inp or "";
    
  2. or download this
    $ perl -le'
    sub prompt {
    ...
    1
    2
    
  3. or download this
    $ perl -le'
    sub prompt {
    ...
    1
    2
    
  4. or download this
    while ( chomp(my $inpt = <STDIN>) != 0  ) {
    
  5. or download this
    while ( my $inpt = <STDIN>  ) {
        chomp $inpt;
    
  6. or download this
                system("ifconfig wlan0 up") if ( (my $ifconf = `ifconfig`)
    + !~ /wlan0/ );
    
  7. or download this
                system 'ifconfig wlan0 up' if `ifconfig` !~ /wlan0/;