Xref: utzoo comp.sys.hp:8376 comp.unix.shell:1892 comp.unix.questions:30307 comp.sources.wanted:16225 Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!mips!news.cs.indiana.edu!att!cbnewse!danj1 From: Dan_Jacobson@ATT.COM Newsgroups: comp.sys.hp,comp.unix.shell,comp.unix.questions,comp.sources.wanted Subject: Re: Looking for Screen Splitting program for shell enviroment Message-ID: Date: 12 Apr 91 11:16:02 GMT References: <248@nos850.UUCP> Sender: danj1@cbnewse.att.com (Dan Jacobson) Reply-To: Dan_Jacobson@ihlpz.ATT.COM Organization: AT&T-BL, Naperville IL, USA Lines: 26 In-Reply-To: joem@nos850.UUCP's message of 11 Apr 91 14:02:22 GMT >>>>> On 11 Apr 91 14:02:22 GMT, joem@nos850.UUCP (Joe Muller) said: Joe> Here at nos850 we do not yet have the capabilities of using a Joe> windows enviroment such as X Windows, so I was wondering if there Joe> are any programs out there that will allow one to split the Joe> screen into 2 or 3 sections with a shell process running in each Joe> one. In GNU Emacs, (describe-function (quote shell)) shell: Run an inferior shell, with I/O through buffer *shell*. [...] Adding this: (defun named-shell (shell-name) "Named shells" (interactive "sShell name: ") (cond ((get-buffer shell-name) (switch-to-buffer shell-name)) (t (shell) (rename-buffer shell-name)))) brings us up to your requirements. Follow the newsgroups gnu.emacs.* and comp.emacs for how to obtain GNU Emacs, as you say you can't FTP. -- Dan_Jacobson@ATT.COM Naperville IL USA +1 708 979 6364