From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/27300 Path: news.gmane.org!not-for-mail From: David Arnold Newsgroups: gmane.comp.tex.context Subject: Convert Shell files to Batch files? Date: Thu, 20 Apr 2006 09:42:36 -0700 Message-ID: Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v749.3) Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1145551470 14205 80.91.229.2 (20 Apr 2006 16:44:30 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 20 Apr 2006 16:44:30 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Thu Apr 20 18:44:25 2006 Return-path: Envelope-to: gctc-ntg-context-518@m.gmane.org Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by ciao.gmane.org with esmtp (Exim 4.43) id 1FWcG7-0002TT-Kv for gctc-ntg-context-518@m.gmane.org; Thu, 20 Apr 2006 18:44:00 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 9AF9B127C0; Thu, 20 Apr 2006 18:43:58 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 29577-04; Thu, 20 Apr 2006 18:43:53 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id A339C127A9; Thu, 20 Apr 2006 18:43:53 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 09F4F127A9 for ; Thu, 20 Apr 2006 18:43:53 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 30478-03 for ; Thu, 20 Apr 2006 18:43:52 +0200 (CEST) Original-Received: from fed1rmmtao08.cox.net (fed1rmmtao08.cox.net [68.230.241.31]) by ronja.ntg.nl (Postfix) with SMTP id AA37C1279A for ; Thu, 20 Apr 2006 18:43:51 +0200 (CEST) Original-Received: from [10.0.1.2] (really [70.191.56.23]) by fed1rmmtao08.cox.net (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with ESMTP id <20060420164350.JXZO20694.fed1rmmtao08.cox.net@[10.0.1.2]> for ; Thu, 20 Apr 2006 12:43:50 -0400 Original-To: Context Mailing List List X-Mailer: Apple Mail (2.749.3) X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.7 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:27300 Archived-At: All, Anyone know how to convert these shell files to batch files for a PC? #! /bin/sh for fig in section*figs.tex; do echo "Processing file $fig (first run)"; texexec $fig > nul; echo "Processing file $fig (second run)"; texexec $fig > nul; done #! /bin/sh for figlib in figlibSection*.xml; do echo "Processing file $figlib"; texexec --pdf --use=fig-make --mod=letter $figlib > nul; done #! /bin/sh ./makefigs ./makefiglibs