HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1784574/root/usr/share/doc/gawk/examples/network/
Upload File :
Current File : //proc/1784574/root/usr/share/doc/gawk/examples/network/mailpopclient.awk
BEGIN {
  POPService  = "/inet/tcp/0/var{emailhost}/pop3"
  RS = ORS = "\r\n"
  print "user var{name}"             |& POPService
  POPService                    |& getline
  print "pass var{password}"         |& POPService
  POPService                    |& getline
  print "retr 1"                |& POPService
  POPService                    |& getline
  if ($1 != "+OK") exit
  print "quit"                  |& POPService
  RS = "\r\n\\.\r\n"
  POPService |& getline
  print $0
  close(POPService)
}