From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/4183 Path: main.gmane.org!not-for-mail From: Han The Thanh Newsgroups: gmane.comp.tex.context Subject: Re: launch texexec in a new terminal Date: Wed, 21 Feb 2001 12:42:54 +0100 (MET) Sender: owner-ntg-context@let.uu.nl Message-ID: <200102211142.MAA21223@anxur.fi.muni.cz> References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1035394871 23602 80.91.224.250 (23 Oct 2002 17:41:11 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 23 Oct 2002 17:41:11 +0000 (UTC) Cc: thanh@informatics.muni.cz, ntg-context@ntg.nl In-Reply-To: from Ed L Cashin at "Feb 20, 1 04:59:33 pm" Original-To: ecashin@coe.uga.edu (Ed L Cashin) Xref: main.gmane.org gmane.comp.tex.context:4183 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:4183 > The command below will run an xterm in the background; in the xterm > the shell will launch texexec and then launch "read", which waits for > you to hit enter so that the xterm doesn't immediately vanish: > > xterm -e sh -c 'texexec --help; read input' & > > You could create a simple Bourne shell script as a wrapper: > > #! /bin/sh > # x-texexec > > xterm -e sh -c "texexec $*; read input" & > > ... where "read input" makes the window stay open until you hit > enter. thanks, Ed. This is very helpful. Thanh