From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Diogo F. S. Ramos Newsgroups: gmane.lisp.guile.user Subject: Re: Installing scheme only programs Date: Fri, 11 Mar 2011 01:57:05 -0300 (BRT) Message-ID: <20110311.015705.296722706338946665.diogofsr@gmail.com> References: <1299809895.2579.3.camel@Renee-desktop> <20110311045028.OURS6.8825.root@cdptpa-web24-z02> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1299819434 16358 80.91.229.12 (11 Mar 2011 04:57:14 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 11 Mar 2011 04:57:14 +0000 (UTC) Cc: guile-user@gnu.org To: NalaGinrut@gmail.com Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Fri Mar 11 05:57:10 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 1PxuPU-000456-W6 for guile-user@m.gmane.org; Fri, 11 Mar 2011 05:57:09 +0100 Original-Received: from localhost ([127.0.0.1]:40813 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PxuPU-0000uc-8U for guile-user@m.gmane.org; Thu, 10 Mar 2011 23:57:08 -0500 Original-Received: from [140.186.70.92] (port=38789 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PxuPG-0000sm-Kx for guile-user@gnu.org; Thu, 10 Mar 2011 23:56:55 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PxuPF-0003TK-Hp for guile-user@gnu.org; Thu, 10 Mar 2011 23:56:54 -0500 Original-Received: from mail-yi0-f41.google.com ([209.85.218.41]:40858) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PxuPF-0003TG-Bf for guile-user@gnu.org; Thu, 10 Mar 2011 23:56:53 -0500 Original-Received: by yib2 with SMTP id 2so1301649yib.0 for ; Thu, 10 Mar 2011 20:56:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:date:message-id:to:cc:subject:from:in-reply-to :references:x-mailer:mime-version:content-type :content-transfer-encoding; bh=t0OO+thEsEPJ2O1+TH+RvYaABeY3pBL/N+Nr7TdqQog=; b=HqNTNo9KUq4NGDcOc0MrRpHZnYoEZNr2/6dlvXBtYgIIrTC7cUHLbuROvD0cI8Ydsl V90vhw1oTc5l7TZtt3NuLD04M8Kw3TqReDrWiUrevE8PTsaamxTw0EjluZvHeafRSiCu C++NbrcPaiRfG0pUg0iMmBg6qyBIOY570oAno= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:message-id:to:cc:subject:from:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; b=MNEmaj9OEiMtTEmSrOqPUxmz9Lya1JRLOkrSNDM+xn4QVJzjHjPIsLKHjnJrH5Y86x n5qnBgVajnThXq5hlOCJ9oOhl+9VJ2SNSt+W595qqmm/xxklMQsNuKT+rOB/2P8sEw4m jTPLTDH+ANtyaT4PxRn8LRyfkSeq/N572Ntus= Original-Received: by 10.236.143.4 with SMTP id k4mr2274752yhj.292.1299819412803; Thu, 10 Mar 2011 20:56:52 -0800 (PST) Original-Received: from localhost (189-68-66-173.dsl.telesp.net.br [189.68.66.173]) by mx.google.com with ESMTPS id y21sm2649682yhc.18.2011.03.10.20.56.51 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 10 Mar 2011 20:56:52 -0800 (PST) In-Reply-To: <20110311045028.OURS6.8825.root@cdptpa-web24-z02> X-Mailer: Mew version 6.3.50 on Emacs 23.2 / Mule 6.0 (HANACHIRUSATO) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.218.41 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:8528 Archived-At: >> > 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) Thank you for the 'sed' recipe. Unfortunately, it's deleting whole lines like: (foo bar) ;;this line is gone -- Diogo F. S. Ramos