;;; -*- lexical-binding: t -*- ;; ;; this file: ;; https://dataswamp.org/~incal/emacs-init/tramp-incal.el (require 'tramp) (require 'tramp-sh) (setq tramp-histfile-override nil) (add-to-list 'tramp-methods '("sunos-ssh" (tramp-login-program "ssh") (tramp-login-args (("-l" "%u") ("-p" "%p") ("%c") ("-e" "none") ("-t" "-t") ("%h") ("\"/bin/sh -i\"") )) (tramp-async-args (("-q"))) (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-c")) )) ;; SunOS system [DNC] ;; (find-file "/sunos-ssh:embe8573@polhem.it.uu.se:public_html/darn.txt") ;; ;; OpenBSD system: ;; (find-file "/-:incal@srv.dataswamp.org:public_html/sth/sth.py") (provide 'tramp-incal)