From: rebecca@bluestop.org
To: devel@edk2.groups.io, zhijux.fan@intel.com
Cc: "Gao, Liming" <liming.gao@intel.com>,
"Feng, Bob C" <bob.c.feng@intel.com>
Subject: Re: FW: [edk2-devel] [PATCH] BaseTools:Linux changes the way the latest version is judged
Date: Mon, 24 Jun 2019 20:33:49 -0600 [thread overview]
Message-ID: <5fd77aaf-3f9e-2d1a-ea10-f60eed4c7cc6@bluestop.org> (raw)
In-Reply-To: <FAD0D7E0AE0FA54D987F6E72435CAFD50AF84800@SHSMSX101.ccr.corp.intel.com>
[-- Attachment #1: Type: text/plain, Size: 948 bytes --]
On 2019-06-24 20:18, Fan, ZhijuX wrote:
> Using "-lt" will report the following errors, but "\<" will not
> 3.6: integer expression expected
> 3.7: integer expression expected
>
> if [[ "$origin_version" < "$python_version" ]];then
> It is equivalent to
> if [ "$origin_version" \< "$python_version" ];then
> These two approaches work
>
> Any question, please let me know. Thanks.
You might want to extract the major and minor values and compare them
separately then. The "<" operator in bash does a string comparison,
which I'm not sure is what's wanted here?
>From http://tldp.org/LDP/abs/html/comparison-ops.html :
<
is less than, in ASCII
<http://tldp.org/LDP/abs/html/special-chars.html#ASCIIDEF>
alphabetical order
*if [[ "$a" < "$b" ]]*
*if [ "$a" \< "$b" ]*
Note that the "<" needs to be escaped
<http://tldp.org/LDP/abs/html/escapingsection.html#ESCP> within a *[
]* construct.
--
Rebecca Cran
[-- Attachment #2: Type: text/html, Size: 1873 bytes --]
next prev parent reply other threads:[~2019-06-25 2:33 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-21 2:33 [PATCH] BaseTools:Linux changes the way the latest version is judged Fan, ZhijuX
2019-06-24 3:17 ` Liming Gao
2019-06-24 3:25 ` [edk2-devel] " rebecca
2019-06-25 2:18 ` FW: " Fan, ZhijuX
2019-06-25 2:33 ` rebecca [this message]
2019-06-26 4:46 ` Fan, ZhijuX
2019-06-26 15:47 ` rebecca
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5fd77aaf-3f9e-2d1a-ea10-f60eed4c7cc6@bluestop.org \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox