Help for this page

Select Code to Download


  1. or download this
    # ./client.pl
    Connected from: 127.0.0.1:33703
    ...
    Command> id nobody
    uid=99(nobody) gid=99(nogroup) groups=99(nogroup),98(nobody)
    Command>
    
  2. or download this
    Command> touch test
    
  3. or download this
    Command> touch test ; ls
    client.pl
    ...
    server.pl~
    test
    Command>
    
  4. or download this
    sub listen() {
    $local = IO::Socket::INET->new(Listen=>1,
    ...
                            print "Command> ";
            }
    }