emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Andrey Tykhonov <atykhonov@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Connect to the ssh and execute any command
Date: Fri, 13 Sep 2013 00:56:41 +0300	[thread overview]
Message-ID: <20130912215641.GA6461@demi> (raw)

Hi all!

During last several days I was trying to implement quite simple script
which:

1. Creates new buffer with the shell (M-x shell)
2. Executes there "ssh username@domain.com". As result -- the password
prompt appears in the minibuffer. I manually input password.
3. Then script executes any command in the recently created buffer
(shell), for example: "ls -la". So I expect to see directory listing on
the domain.com.

but, for sorry, I cannot to do so that "ls -la" will be executed!

I googled, I have tried many different approaches but without any luck :-(

Here I should mention quite important thing: I cannot use TRAMP because
it does not work with the server to which the script connects and then
on which executes "ls -la". (I suppose that TRAMP uses FUSE, but for
sorry FUSE does not work with mine server). So TRAMP is not available
for me.

For example I tried:

(progn
  (make-comint-in-buffer "ssh" "*ssh*" "ssh" nil "username@domain.com")
  (make-comint-in-buffer "ls" "*ssh*" "ls" nil "-la")
)
"ls -la" does not executes.

(progn
  (make-comint-in-buffer "ssh" "*ssh*" "ssh" nil "username@domain.com")
  ; instead of "ls -la" here is pwd
  (start-file-process "pwd" "*ssh*" "pwd")
) 
In *scratch* outputs just "Process pwd finished"

(progn
  (start-process-shell-command "ssh" "*ssh*" "ssh usernamev@domain.com")
  (process-send-string (get-buffer-process "*ssh*") "pwd\n")
)
Seems this one -- is overall wrong approach because start-process-shell-command
does not want to show shell after I put the password in the prompt.

Also I tried call-process instead of start-process-shell-command:
(call-process "ssh" nil "*ssh*" t "username@domain.com")

I got "Pseudo-terminal will not be allocated because stdin is not a
terminal".

Then...

(progn
  (setq buffer (get-buffer-create "*ssh*"))
  ; switch to buffer
  (switch-to-buffer-other-window buffer)
  ; execute there a shell
  (shell buffer)
  ; then executes there mine commands
  (process-send-string (get-buffer-process "*ssh*") "ssh username@domain.com")
  (comint-send-input)
  ; and
  (process-send-string (get-buffer-process "*ssh*") "ls -la")
  (comint-send-input)
)
Last process-send-string does not execute in time because it is not synchronous.
Last process-send-string does not wait for previous...

Also I tried set-process-filter but filter just eats password prompt so
I could not input password....


How my task could be implemented without TRAMP?

Please help!



Regards,
Andrey

             reply	other threads:[~2013-09-12 21:57 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-12 21:56 Andrey Tykhonov [this message]
2013-09-12 22:16 ` Connect to the ssh and execute any command Eduardo Ochs
2013-09-12 22:38 ` Eric Schulte
2013-09-13  6:45 ` Michael Albinus
2013-09-16 17:44   ` Andrey Tykhonov
2013-09-17  6:54     ` Michael Albinus
2013-09-17 19:05       ` Andrey Tykhonov
2013-09-18  6:42         ` Michael Albinus
2013-09-13 11:23 ` Suvayu Ali

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130912215641.GA6461@demi \
    --to=atykhonov@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).