From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Newsgroups: gmane.lisp.guile.user Subject: Re: Installing scheme only programs Date: Thu, 10 Mar 2011 23:50:28 -0500 Message-ID: <20110311045028.OURS6.8825.root@cdptpa-web24-z02> References: <1299809895.2579.3.camel@Renee-desktop> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1299819083 15214 80.91.229.12 (11 Mar 2011 04:51:23 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 11 Mar 2011 04:51:23 +0000 (UTC) Cc: guile-user@gnu.org To: NalaGinrut@gmail.com, "Diogo F.S.Ramos" Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Fri Mar 11 05:51:17 2011 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PxuJp-0002YP-2Q for guile-user@m.gmane.org; Fri, 11 Mar 2011 05:51:17 +0100 Original-Received: from localhost ([127.0.0.1]:41068 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PxuJo-0008DL-Mu for guile-user@m.gmane.org; Thu, 10 Mar 2011 23:51:16 -0500 Original-Received: from [140.186.70.92] (port=58778 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PxuJ7-0007w6-5l for guile-user@gnu.org; Thu, 10 Mar 2011 23:50:34 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PxuJ5-0001tI-V6 for guile-user@gnu.org; Thu, 10 Mar 2011 23:50:32 -0500 Original-Received: from cdptpa-omtalb.mail.rr.com ([75.180.132.122]:41362) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PxuJ5-0001rr-So for guile-user@gnu.org; Thu, 10 Mar 2011 23:50:31 -0500 Authentication-Results: cdptpa-omtalb.mail.rr.com smtp.user=dsmich@roadrunner.com; auth=pass (LOGIN) X-Authority-Analysis: v=1.1 cv=tLsyj04/L/SH/N6p42ldY6jXDYWe4pX5hAm6uRA1LKo= c=1 sm=0 a=RjaatilV3k4A:10 a=IkcTkHD0fZMA:10 a=pGLkceISAAAA:8 a=n76DvZZw8n8pkwxrXn0A:9 a=w3KNuCqD7HV3dvCzeaFScKZnU00A:4 a=QEXdDO2ut3YA:10 a=MSl-tDqOz04A:10 a=G4b9rEKDMGvtoIkW0Y0qgw==:117 X-Cloudmark-Score: 0 Original-Received: from [10.127.132.175] ([10.127.132.175:58631] helo=cdptpa-web24-z02) by cdptpa-oedge02.mail.rr.com (envelope-from ) (ecelerity 2.2.3.46 r()) with ESMTPA id 41/92-05134-41AA97D4; Fri, 11 Mar 2011 04:50:28 +0000 In-Reply-To: <1299809895.2579.3.camel@Renee-desktop> X-Priority: 3 (Normal) Sensitivity: Normal X-Originating-IP: X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 75.180.132.122 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:8527 Archived-At: ---- nalaginrut wrote: > > I wonder if there is a tool to, say, strip all comments from the > > "binary", so it could be smaller. I guess such tool would not be that > > hard to write, but I don't know. > > I think it's not a big deal if you just want to get rid of comments.I > always do it like this way: > ====== > sed "/;.*/d" filename > ====== Careful! Guile now has the expression comment #; That sed would be bad for something like (list a #;b c) -Dale