CC: | lembark [...] wrkhors.com |
Subject: | Sanity check: you have "tail -n+X"? |
Date: | Sat, 17 Mar 2018 18:46:05 -0500 |
To: | bug-Module-FromPerlVer [...] rt.cpan.org |
From: | Steven Lembark <lembark [...] wrkhors.com> |
On Sat, 17 Mar 2018 03:44:11 -0400
"Thomas Klausner via RT" <bug-Module-FromPerlVer@rt.cpan.org> wrote:
Show quoted text
> env lives in /usr/bin/env (and bash is in /usr/pkg/bin/bash, but
One last sanity check: Does your version of "tail" support "-N"?
for example if you save the fragment below as "/var/tmp/foobar" and
run it, do you get "Hello...", etc?
That or I'll just switch to /usr/bin/env, which is where GNU
normally expects to put it.
Thanks again for taking the time.
#!/bin/sh
tail -n+4 $0 | perl -;
print "Hello, world!\n";
print "This is Perl-$^V\n";
__END__