Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > gnu.bash.bug > #14720 > unrolled thread

GNU Bash v.4.4.23-5 built-in function 'set' produces variable outputs

Started byRicky Tigg <ricky.tigg@gmail.com>
First post2018-10-19 21:41 +0200
Last post2018-10-19 21:41 +0200
Articles 1 — 1 participant

Back to article view | Back to gnu.bash.bug


Contents

  GNU Bash v.4.4.23-5 built-in function 'set' produces variable outputs Ricky Tigg <ricky.tigg@gmail.com> - 2018-10-19 21:41 +0200

#14720 — GNU Bash v.4.4.23-5 built-in function 'set' produces variable outputs

FromRicky Tigg <ricky.tigg@gmail.com>
Date2018-10-19 21:41 +0200
SubjectGNU Bash v.4.4.23-5 built-in function 'set' produces variable outputs
Message-ID<mailman.2471.1539978119.1284.bug-bash@gnu.org>
Built-in function 'set' produces variable outputs.

OS: Fedora 29 – Component: bash-4.4.23-5.fc29.x86_64

To reproduce:

$ export SSLKEYLOGFILE=/home/user/test

$ set | grep SSL
SSLKEYLOGFILE=/home/user/test
_=SSLKEYLOGFILE

$ set | grep SSL
SSLKEYLOGFILE=/home/user/test

Expected result right after the creation of an environment variable:

$ set | grep SSL
SSLKEYLOGFILE=/home/user/test

[toc] | [standalone]


Back to top | Article view | gnu.bash.bug


csiph-web