Skip to main content

in reply to Mike Ely

Not if the next two lines are
```
eval 'exec perl -x $0 ${1+"$@"}'
die "another day"; exit 1
```
in reply to Massa 👽 Humberto

Some days I feel like the only person that uses /usr/bin/env perl to get the correct interpreter.
in reply to Massa 👽 Humberto

That is forward looking… wouldn’t want to mess up the system raku!

(I say that not knowing if it comes installed on any system. But seriously, 👍)

in reply to Phillip Upton

Debian does package it, but for reasons of "things have been moving quite fast", I tend to install it with asdf
in reply to Massa 👽 Humberto

TIL of `asdf`. Nice!

https://asdf-vm.com
https://github.com/asdf-vm/asdf
https://github.com/m-dango/asdf-raku

This entry was edited (1 year ago)
Unknown parent

Salve J. Nilsen

Nice! Thanks for the link.

Though I like that things are written in a non-compiled language (e.g. bash scripts). So much easier for troubleshooting.

Though I see clear benefits of `rtx`'s "Arbitrary env vars" feature. Doesn't `asdf` do that? 🤔 (edit: It does, using `direnv`)

Ooh, and I don't see #RakuLang support like `asdf` gets with the plugin linked above... 😢 (edit: it does, as @citizen428 mentions below)

This entry was edited (1 year ago)
Unknown parent

Salve J. Nilsen
Thanks! ^_^
in reply to Salve J. Nilsen

I exchanged asdf for rtx in my home machine and I liked it so much that I replicated it in the work machine too... Thanks for the link...