Hi Tom,
I do write my shell scripts in Guile. For added nicety, I usually deploy
these scripts using Guix's G-expressions. This lets you easily manage
the dependencies of that script, and deploy to remote machines
effortlessly. See
https://systemreboot.net/post/deploy-scripts-using-g-expressions
i did not understood you where searching a shell in scheme...
so going further it seems to exist a sort of terminal in scheme too:
http://domterm.org/index.html
it is for Kawa scheme not guile, but i never test it, i can not provide any
feed back
Damien
On Fri, Apr 19, 2024 at 1:43 AM Tom Whit
Not discouraging you from gash, but babashka is pretty good for this
too: https://babashka.org/
Thanks all. Very helpful.
Tom
On Thursday, April 18, 2024 at 04:29:36 PM PDT, Matt Wette
wrote:
On 4/18/24 9:44 AM, Tom Whitcomb via General Guile related discussions
wrote:
> Hi.
> I need to write a set of shell scripts and I would really like to do it with
> a lisp. Is that a use
On 4/18/24 9:44 AM, Tom Whitcomb via General Guile related discussions
wrote:
Hi.
I need to write a set of shell scripts and I would really like to do it with a
lisp. Is that a use case for guile or should I move towards scheme/scsh?
Tom
You may be interested in gash: https://savannah.nongnu.
hello Tom,
i use sometimes guile as a shell script, your file should start with:
#!/usr/local/bin/guile -s
!#
and after the scheme code
for example :
(define stderr (current-error-port))
; parse the input file from command line
(define cmd-ln (command-line))
(define args (cdr cmd-ln))
(when (m