Re: strange shell behavior...thoughts?

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

 



Kevin Martin wrote:
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

You mean "unset ?". That's not to say that it'll work, but when you unset variables, you don't precede them with the $ character.

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?

If you want to understand what's going on, try:

$ false
$ echo "set -xv ; grep ABCD b ; echo $? ; if [ "$?" ="0" ] ; then echo yes ; fi"

If you want to pass "$" characters like that, you'll need to escape them or use single quotes:

$ ksh -c " set -xv ; grep ABCD b ; echo \$? ; if [ \"\$?\" =\"0\" ] ; then echo yes ; fi"

$ ksh -c ' set -xv ; grep ABCD b ; echo $? ; if [ "$?" ="0" ] ; then echo yes ; fi'


--
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]     [Older Fedora Users]     [Fedora Announce]     [Fedora Package Announce]     [EPEL Announce]     [Fedora Magazine]     [Fedora News]     [Fedora Summer Coding]     [Fedora Laptop]     [Fedora Cloud]     [Fedora Advisory Board]     [Fedora Education]     [Fedora Security]     [Fedora Scitech]     [Fedora Robotics]     [Fedora Maintainers]     [Fedora Infrastructure]     [Fedora Websites]     [Anaconda Devel]     [Fedora Devel Java]     [Fedora Legacy]     [Fedora Desktop]     [Fedora Fonts]     [ATA RAID]     [Fedora Marketing]     [Fedora Management Tools]     [Fedora Mentors]     [SSH]     [Fedora Package Review]     [Fedora R Devel]     [Fedora PHP Devel]     [Kickstart]     [Fedora Music]     [Fedora Packaging]     [Centos]     [Fedora SELinux]     [Fedora Legal]     [Fedora Kernel]     [Fedora OCaml]     [Coolkey]     [Virtualization Tools]     [ET Management Tools]     [Yum Users]     [Tux]     [Yosemite News]     [Gnome Users]     [KDE Users]     [Fedora Art]     [Fedora Docs]     [Asterisk PBX]     [Fedora Sparc]     [Fedora Universal Network Connector]     [Libvirt Users]     [Fedora ARM]

  Powered by Linux