strange shell behavior...thoughts?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



So I'm fairly confused at this point.

Start with a /bin/sh shell.

Then do:

sh-3.2$ unset $?
sh: unset: `0': not a valid identifier

ok, no problem; then do

sh-3.2$ /bin/ksh -c " set -xv  ; grep ABCD  b ; echo $? ; if [ "$?" =
"0" ] ; then echo yes ; fi"
+ grep ABCD b
ABCD="C" ; export ABCD
+ echo 1
1
+ [ 1 = 0 ]

WHAT? 

Then do it again without unsetting $?:
sh-3.2$ /bin/ksh -c " set -xv  ; grep ABCD b ; echo $? ; if [ "$?" = "0"
] ; then echo yes ; fi"
+ grep ABCD b
ABCD="C" ; export ABCD
+ echo 0
0
+ [ 0 = 0 ]
+ echo yes
yes


Why doesn't the first iteration work?  Is this a ksh bug?

Thanks.

Kevin


-- 
fedora-list mailing list
fedora-list@xxxxxxxxxx
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines

[Index of Archives]     [Current Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]     [Fedora Docs]

  Powered by Linux