commit fb47eaef4e1d9b345143334846f1a212d7221891 parent 40044ee095ebc56214d116a8195c191bac0cef70 Author: Yuval Langer <yuval.langer@gmail.com> Date: Sun, 14 Jan 2024 14:19:19 +0200 Change shebang for "maximum portability" as the manual says……… Diffstat:
M | rsv2scm.scm | | | 3 | ++- |
M | scm2rsv.scm | | | 3 | ++- |
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/rsv2scm.scm b/rsv2scm.scm @@ -1,4 +1,5 @@ -#!/usr/bin/env -S guile --r7rs -e main -L . -s +#!/usr/bin/env sh +exec guile --r7rs -e main -L . -s "$0" "$@" !# ;;; Scheme implementation of RSV - Rows of String Values. diff --git a/scm2rsv.scm b/scm2rsv.scm @@ -1,4 +1,5 @@ -#!/usr/bin/env -S guile --r7rs -e main -L . -s +#!/usr/bin/env sh +exec guile --r7rs -e main -L . -s "$0" "$@" !# ;;; Scheme implementation of RSV - Rows of String Values.