Greetings,

APL scripts start with:  #!/usr/local/bin/apl --script

It is my understanding that that is not a portable way to start scripts.

For maximum portability on a modern system, the following should be used
instead:
#!/usr/bin/env -S apl --script

For maximum historical portability:
#!/bin/sh
exec apl --script "$0" "$@"


Blake McBride
  • APL script sta... Blake McBride
    • Re: APL s... Dr . Jürgen Sauermann via Bugs and suggestions for GNU APL
      • Re: A... Blake McBride
        • R... Dr . Jürgen Sauermann via Bugs and suggestions for GNU APL
          • ... Dr . Jürgen Sauermann via Bugs and suggestions for GNU APL

Reply via email to