Variable: ange-ftp-gateway-setup-term-command

ange-ftp-gateway-setup-term-command is a variable defined in ange-ftp.el.gz.

Value

"stty -echo nl\n"

Documentation

Set up terminal after logging in to the gateway machine.

This command should stop the terminal from echoing each command, and arrange to strip out trailing ^M characters.

Source Code

;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
(defvar ange-ftp-gateway-setup-term-command
  (if (eq system-type 'hpux)
      "stty -onlcr -echo\n"
    "stty -echo nl\n")
  "Set up terminal after logging in to the gateway machine.
This command should stop the terminal from echoing each command, and
arrange to strip out trailing ^M characters.")