Re: [Bug-apl] #!apl

2018-08-21 Thread Juergen Sauermann
Hi Hudson, you can ./configure GNU APL with prefix=/usr and then recompile and install. /// Jürgen On 08/21/2018 03:34 AM, Hudson Flavio Meneses Lacerda wrote: Hi. Some of my scripts use `#!/usr/bin/apl --script

Re: [Bug-apl] #!apl

2018-08-21 Thread enztec
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

Re: [Bug-apl] #!apl

2018-08-21 Thread Hudson Flavio Meneses Lacerda
Hi Jürgen, Indeed, for my own local computer, I could install apl in /usr. However, I also use third-part computers as restricted user ($), with apl installed in a different path (under ~/). Here is my new approach (trying to avoid side effects): ---8<-- #!/bin/

Re: [Bug-apl] #!apl

2018-08-21 Thread enztec
Hi He might want to have both the deb and the svn on the same system On Tue, 21 Aug 2018 11:14:30 +0200 Juergen Sauermann wrote: > Hi Hudson, > > you can ./configure GNU APL with prefix=/usr and then recompile and install. > > /// Jürgen > > > On 08/21/2018 03:34 AM, Hudson Flavio Meneses

Re: [Bug-apl] #!apl

2018-08-21 Thread Juergen Sauermann
Hi Hudson, aas far as I know you can use a relative path to apl as long as the apl binary is in your $PATH. Thus '#!apl --script' probably works regardless of whether apl is installed in /usr/loccal/bin or in /user/bin. However, m

Re: [Bug-apl] #!apl

2018-08-21 Thread Hudson Flavio Meneses Lacerda
On Tue, 21 Aug 2018 18:36:27 +0200 Juergen Sauermann wrote: > Hi Hudson, > Hi, > aas far as I know you can use a relative path to apl as long as the > apl binary is in your $PATH. Thus '#!apl --script' probably works > regardless of whether apl is installed in /usr/loccal/bin or > in /user/bin

Re: [Bug-apl] #!apl

2018-08-21 Thread Juergen Sauermann
Hi, it works on my box: eedjsa@server66:~/projects/juergen/apl-1.7/src$ cat test.apl #!apl --script "APL script started" )OFF eedjsa@server66:~/projects/juergen/apl-1.7/src$ chmod 755 test.ap

Re: [Bug-apl] #!apl

2018-08-21 Thread Hudson Flavio Meneses Lacerda
On Tue, 21 Aug 2018 20:51:59 +0200 Juergen Sauermann wrote: > Hi, > > it works on my box: Hi, I presume it works because apl binary is generated inside that directory (apl-1.7/src/), and "." is in your $PATH. So, "#!apl" calls "./apl" inside apl-1.7/src/. > > eedjsa@server66:~/projects/juerg

Re: [Bug-apl] #!apl

2018-08-21 Thread Kacper Gutowski
On Tue, Aug 21, 2018 at 04:54:52PM -0300, Hudson Flavio Meneses Lacerda wrote: > I presume it works because apl binary is generated inside that directory > (apl-1.7/src/), and "." is in your $PATH. So, "#!apl" calls > "./apl" inside apl-1.7/src/. That is the case, #!apl will work only when called