Re: #!/usr/bin/perl6

2017-04-01 Thread ToddAndMargo
On 04/01/2017 03:05 PM, Brandon Allbery wrote: On Sat, Apr 1, 2017 at 6:01 PM, ToddAndMargo mailto:toddandma...@zoho.com>> wrote: On 04/01/2017 03:52 AM, Francis (Grizzly) Smit wrote: #!/usr/bin/env perl6 is probably better let /usr/bin/env find the path to perl6 What

Re: #!/usr/bin/perl6

2017-04-01 Thread ToddAndMargo
On 04/01/2017 03:01 PM, ToddAndMargo wrote: On 04/01/2017 03:52 AM, Francis (Grizzly) Smit wrote: #!/usr/bin/env perl6 is probably better let /usr/bin/env find the path to perl6 What do you mean? Never mind. Figured it out. :-) -- ~~ Computers are like

Re: #!/usr/bin/perl6

2017-04-01 Thread Brandon Allbery
On Sat, Apr 1, 2017 at 6:01 PM, ToddAndMargo wrote: > On 04/01/2017 03:52 AM, Francis (Grizzly) Smit wrote: > >> #!/usr/bin/env perl6 >> >> is probably better let /usr/bin/env find the path to perl6 >> > > What do you mean? > `env` does a $PATH search, and usually is in /usr/bin so it's slightly

Re: #!/usr/bin/perl6

2017-04-01 Thread ToddAndMargo
On 04/01/2017 03:58 AM, Tom Browder wrote: On Sat, Apr 1, 2017 at 01:16 ToddAndMargo mailto:toddandma...@zoho.com>> wrote: Hi All, and all my Linux Perl6 programs start with #!/usr/bin/perl6 Modern practice for most Linux practicitioners I think is to use this sheban

Re: #!/usr/bin/perl6

2017-04-01 Thread ToddAndMargo
On 04/01/2017 03:52 AM, Francis (Grizzly) Smit wrote: #!/usr/bin/env perl6 is probably better let /usr/bin/env find the path to perl6 What do you mean?

Re: #!/usr/bin/perl6

2017-04-01 Thread Tom Browder
On Sat, Apr 1, 2017 at 01:16 ToddAndMargo wrote: > Hi All, > and all my Linux Perl6 programs start with > #!/usr/bin/perl6 > Modern practice for most Linux practicitioners I think is to use this shebang line: #!/usr/bin/env perl6 That way the script, providing the scri

Re: #!/usr/bin/perl6

2017-04-01 Thread Francis (Grizzly) Smit
different places: EPEL: /usr/bin/perl6 nxadm: /opt/rakudo/bin/perl6 and all my Linux Perl6 programs start with #!/usr/bin/perl6 The following cured the issue # ln -s /opt/rakudo/bin/perl6 /usr/bin/perl6 I reported the issue over on https://github.com/nxadm/rakudo-pkg/issues/9

#!/usr/bin/perl6

2017-03-31 Thread ToddAndMargo
/releases https://github.com/nxadm/rakudo-pkg/releases/download/2017.03_02/perl6-rakudo-moarvm-CentOS7.3.1611-20170300-02.x86_64.rpm Problem, EPEL and `nxadm` put `perl6` in different places: EPEL: /usr/bin/perl6 nxadm: /opt/rakudo/bin/perl6 and all my Linux Perl6 programs start with