From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Taylan Ulrich Bayirli/Kammer Newsgroups: gmane.lisp.guile.user Subject: Re: system Date: Mon, 20 Oct 2014 09:19:57 +0200 Message-ID: <87egu3ky1u.fsf@taylan.uni.cx> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1413790058 19659 80.91.229.3 (20 Oct 2014 07:27:38 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 20 Oct 2014 07:27:38 +0000 (UTC) Cc: guile-user@gnu.org To: Tim Even Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Mon Oct 20 09:27:25 2014 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Xg7NC-0002dL-LA for guile-user@m.gmane.org; Mon, 20 Oct 2014 09:27:22 +0200 Original-Received: from localhost ([::1]:42804 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xg7NC-00029t-6q for guile-user@m.gmane.org; Mon, 20 Oct 2014 03:27:22 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34662) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xg7N3-00029l-2r for guile-user@gnu.org; Mon, 20 Oct 2014 03:27:13 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xg7N2-00018G-09 for guile-user@gnu.org; Mon, 20 Oct 2014 03:27:13 -0400 Original-Received: from mail-la0-x234.google.com ([2a00:1450:4010:c03::234]:50509) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xg7G4-0007bd-MZ for guile-user@gnu.org; Mon, 20 Oct 2014 03:20:00 -0400 Original-Received: by mail-la0-f52.google.com with SMTP id hz20so3424869lab.11 for ; Mon, 20 Oct 2014 00:19:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=BmIAa4a81Ne6sTrUl1DM3lnho0sauvD+1X7K/RoUIpY=; b=KusmG9wAFP3U+KQrpgrwdGpKbS6Bo8f+xswRH0rV5MbVjgNAzaMeEN+yxqaiK7Sdmf UWLH3FPVAiZh69y3PvY8oUVNFOra9nNVAPxK5l96fl+/zuXTKqdl3LYNOr7y0dUYzxCs CBnGBmrWHuE3cw1jlyT9tSa3/5W8QcrrxX74MzZNxh5VSywN7x/5nsugBwPH8gqSu6iA A+dD/eABIXKVPJAlWinQU7Df5BOiKTn0s1QtFm11fp3bA4BgiWLjwAXO+lMhkitlbPYm X+6vxWvnzrv+YAqEfNcgyU98hFQyL6+5L4HUDrVVSTnITNAcGf5kzadkNBIgFDpXdxnc NLOw== X-Received: by 10.112.77.129 with SMTP id s1mr9463693lbw.36.1413789599050; Mon, 20 Oct 2014 00:19:59 -0700 (PDT) Original-Received: from taylan.uni.cx (p200300514A34D5700213E8FFFEED36FB.dip0.t-ipconnect.de. [2003:51:4a34:d570:213:e8ff:feed:36fb]) by mx.google.com with ESMTPSA id f8sm2986793lbv.39.2014.10.20.00.19.58 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 20 Oct 2014 00:19:58 -0700 (PDT) In-Reply-To: (Tim Even's message of "Sun, 19 Oct 2014 17:55:57 -0500") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c03::234 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:11583 Archived-At: Tim Even writes: > I've been using Chez/Petite Scheme's system command as a sort of > Scheme interface to Netpbm and other executables. Any information -- > more than what is in the documentation -- on a Guile equivalent? Guile has a `system' procedure as well. Note that its behavior does not seem to be one-to-one equivalent to that of Chez; you can refer to its documentation for details. Taylan