Hi I assume this Debian of which you speak is a linux distro of some sort?
Use a link from the svn installed location /usr/local/bin/apl location to the location you have in your scripts /usr/bin/apl (from debian deb location) ln -sf /usr/local/bin/apl /usr/bin/apl then you don't have to change the scripts On Mon, 20 Aug 2018 22:34:56 -0300 Hudson Flavio Meneses Lacerda <hud...@hudsonlacerda.com> wrote: > Hi. > > Some of my scripts use `#!/usr/bin/apl --script` (from Debian), but now > I am using SVN, so I should use `#!/usr/local/bin/apl --script`. So, I > need to change the scripts, that may be incompatible with > different environments… > > I have tried: > > #!/usr/bin/env apl > #!apl --script > #!/usr/bin/apl --script > #!/usr/local/bin/apl --script > > So far, the best solution I could find (so that I do not need to > change the files in the future) is this file header: > > ---------------------------------------------------- > #! > true ← ~false ← 0 ⍝; exec apl --script "$0" "$@" > ---------------------------------------------------- > > Are there any better solutions? > > Thanks, > Hudson > > > > >