Hide Forgot
Description of problem: Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1. Create a file /tmp/test.sh with content #!/bin/ksh typeset -u X echo X=$X 2. Make it executable chmod u+x /tmp/test.sh 3. Execute it: X=foo /tmp/test.sh Actual results: X= Expected results: X=FOO Additional info:
this is documented change: 10-10-07 +To reduce unwanted side effects, invoking typeset without the export option and without an assignment now causes the variables to be unset if the variable is inherited from the environment.