unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Uwe Brauer <oub@mat.ucm.es>
To: help-gnu-emacs@gnu.org
Subject: Re: how to send lines of a shell script directly to the shell
Date: Thu, 20 Apr 2023 22:12:22 +0200	[thread overview]
Message-ID: <87a5z2xqhl.fsf@mat.ucm.es> (raw)
In-Reply-To: 871qkh58h7.fsf@t14.reltub.ca

[-- Attachment #1: Type: text/plain, Size: 2070 bytes --]

>>> "LB" == Leo Butler <Leo.Butler@umanitoba.ca> writes:

> On Sun, Apr 16 2023, Uwe Brauer <oub@mat.ucm.es> wrote:
>>> On Sun, Apr 16, 2023 at 10:53:54AM +0200, Uwe Brauer wrote:
>> 
>>> Ask your Emacs, not Google. Emacs is your friend, Google isn't :)
>> 
>> With a bit better search I obtained
>> 
>> https://stackoverflow.com/questions/6286579/emacs-shell-mode-how-to-send-region-to-shell
>> 
>> Which does what I want

> There are several solutions there, you don't mention which you chose.

This one

(defun sh-send-line-or-region (&optional step)
  (interactive ())
  (let ((proc (get-process "shell"))
        pbuf min max command)
    (unless proc
      (let ((currbuff (current-buffer)))
        (shell)
        (switch-to-buffer currbuff)
        (setq proc (get-process "shell"))
        ))
    (setq pbuff (process-buffer proc))
    (if (use-region-p)
        (setq min (region-beginning)
              max (region-end))
      (setq min (point-at-bol)
            max (point-at-eol)))
    (setq command (concat (buffer-substring min max) "\n"))
    (with-current-buffer pbuff
      (goto-char (process-mark proc))
      (insert command)
      (move-marker (process-mark proc) (point))
      ) ;;pop-to-buffer does not work with save-current-buffer -- bug?
    (process-send-string  proc command)
    (display-buffer (process-buffer proc) t)
    (when step 
      (goto-char max)
      (next-line))
    ))

> Anyhow, I recommend keyboard macros. That is generally much faster than
> any alternative...if I find myself using a keyboard macro repeatedly,
> then I will invest time in finding or writing a better alternative.

Uff, I found this cumbersome



-- 
Warning: Content may be disturbing to some audiences
I strongly condemn Putin's war of aggression against the Ukraine.
I support to deliver weapons to Ukraine's military. 
I support the ban of Russia from SWIFT.
I support the EU membership of the Ukraine. 
https://addons.thunderbird.net/en-US/thunderbird/addon/gmail-conversation-view/

[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5673 bytes --]

  parent reply	other threads:[~2023-04-20 20:12 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-16  8:53 how to send lines of a shell script directly to the shell Uwe Brauer
2023-04-16  9:05 ` tomas
2023-04-16 10:03   ` Uwe Brauer
2023-04-16 12:57     ` tomas
2023-04-16 10:09   ` Uwe Brauer
2023-04-18 18:52     ` Leo Butler
2023-04-18 19:14       ` Emanuel Berg
2023-04-20 20:12       ` Uwe Brauer [this message]
2023-04-16 15:31 ` Eduardo Ochs
2023-04-16 19:47   ` Uwe Brauer
2023-04-22 19:49 ` parozusa

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.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=87a5z2xqhl.fsf@mat.ucm.es \
    --to=oub@mat.ucm.es \
    --cc=help-gnu-emacs@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.
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).