summaryrefslogtreecommitdiff
path: root/README.bs2000
diff options
context:
space:
mode:
authorNicolas R <atoomic@cpan.org>2020-06-16 11:05:17 -0600
committerKarl Williamson <khw@cpan.org>2020-08-10 22:28:04 -0600
commit188e64dde7746219802c1eafb9ef48df31f65f0d (patch)
tree1ab704cd8389e5c5eb54967c07342b12f5cc140e /README.bs2000
parentab01742544b98b5b5e13d8e1a6e9df474b9e3005 (diff)
downloadperl-188e64dde7746219802c1eafb9ef48df31f65f0d.tar.gz
Provide a better recommendation for 'Run only under a shell'
Using an unset variable hides the true intent and also requires an extra backslash `\$running_under_some_shell` when used in heredoc. Note that this could also lead to mistake when using `\$` in a regular Perl program, as this would be true and not false as it should be. Stop recommending the use of an undefined variable for the shell fallback. Use '0', with a comment making clear the goal of 'if 0'.
Diffstat (limited to 'README.bs2000')
-rw-r--r--README.bs20002
1 files changed, 1 insertions, 1 deletions
diff --git a/README.bs2000 b/README.bs2000
index bfed5d5e48..d34cc7ce03 100644
--- a/README.bs2000
+++ b/README.bs2000
@@ -137,7 +137,7 @@ instead:
: # use perl
eval 'exec /usr/local/bin/perl -S $0 ${1+"$@"}'
- if $running_under_some_shell;
+ if 0; # ^ Run only under a shell
=head2 Using Perl in "native" BS2000