From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: j kalbhenn Newsgroups: gmane.lisp.guile.devel Subject: feature request: simple hashbang for executable scripts Date: Sat, 19 Aug 2017 09:00:37 +0000 Message-ID: <20170819090037.GA12397@sph-desktop.fritz.box> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: blaine.gmane.org 1503133261 15317 195.159.176.226 (19 Aug 2017 09:01:01 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sat, 19 Aug 2017 09:01:01 +0000 (UTC) User-Agent: Mutt/1.8.3 (2017-05-23) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sat Aug 19 11:00:58 2017 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dizcm-0003gC-4s for guile-devel@m.gmane.org; Sat, 19 Aug 2017 11:00:56 +0200 Original-Received: from localhost ([::1]:33229 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dizcs-0000w7-RP for guile-devel@m.gmane.org; Sat, 19 Aug 2017 05:01:02 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:44052) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dizck-0000vd-I5 for guile-devel@gnu.org; Sat, 19 Aug 2017 05:00:55 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dizch-0005Jz-3Y for guile-devel@gnu.org; Sat, 19 Aug 2017 05:00:54 -0400 Original-Received: from mout02.posteo.de ([185.67.36.66]:47736) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dizcg-0005DJ-FU for guile-devel@gnu.org; Sat, 19 Aug 2017 05:00:50 -0400 Original-Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 4702D20390 for ; Sat, 19 Aug 2017 11:00:39 +0200 (CEST) Original-Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 3xZDSQ6bj8z10HY for ; Sat, 19 Aug 2017 11:00:38 +0200 (CEST) Content-Disposition: inline X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 185.67.36.66 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: "guile-devel" Xref: news.gmane.org gmane.lisp.guile.devel:19260 Archived-At: scripts of other languages usually need just one line to specify the interpreter: #!/usr/bin/myinterpreter but with guile we have to add a final !# #!/usr/bin/guile !# or even #!/usr/bin/guile -s !# in my opinion, this is not ideal. from my perspective as a guile user this seems to be unnecessarily inconsistent and complicated.