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
