Comparison of floating point numbers in bash


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Comparison of floating point numbers in bash
# 8  
Old 10-23-2019
Hi Chubler_XL...

This is the result, (including the missing 'if'):
Code:
Last login: Wed Oct 23 09:21:10 on ttys000
AMIGA:amiga~> num1=1.2345
AMIGA:amiga~> num2=0.9876
AMIGA:amiga~> if awk "BEGIN{exit !($num1 > $num2)}"; then echo "OK."; fi
-bash: !: event not found
AMIGA:amiga~> _

I am getting good at _fudging_ with single and double quotes.
But unless I use my Linux box I only have bash version 3.2.x, but almost everyone has POSIX compliance. <wink>






-------------------------
OT, in fact I used a method of exiting AudioScope.sh that was perfect until bash 4.4.x when someone must have noticed it was a serious bug and I thought it was a feature, post #7:
AudioScope Project.


EDIT:
My modified version also works in 'dash'.

Last edited by wisecracker; 10-23-2019 at 06:01 AM.. Reason: See EDIT:
# 9  
Old 10-23-2019
Perl is even shorter than awk.
It can even be hidden in a function:

Code:
fff(){
perl -e "exit ! ($*)"
}

num1=1.2345
num2=0.9876
if fff "$num1 > $num2"; then echo "OK"; fi

Or
Code:
if fff "$num1" ">" "$num2"; then echo "OK"; fi

This User Gave Thanks to MadeInGermany For This Post:
# 10  
Old 10-23-2019
Then, why not
Code:
bc <<< "$num1 > $num2"
1

?
This User Gave Thanks to RudiC For This Post:
# 11  
Old 10-23-2019
Quote:
Originally Posted by RudiC
Then, why not
Code:
bc <<< "$num1 > $num2"
1

?
Perhaps because the OP might mistake '1' as being a result or a '$?' as opposed to a 'true'.
(Also it does not work in POSIX but that is my reason not the OP's.)
This User Gave Thanks to wisecracker For This Post:
# 12  
Old 10-23-2019
Quote:
Originally Posted by wisecracker
Hi Chubler_XL...

This is the result, (including the missing 'if'):
Code:
Last login: Wed Oct 23 09:21:10 on ttys000
AMIGA:amiga~> num1=1.2345
AMIGA:amiga~> num2=0.9876
AMIGA:amiga~> if awk "BEGIN{exit !($num1 > $num2)}"; then echo "OK."; fi
-bash: !: event not found
AMIGA:amiga~> _

I am getting good at _fudging_ with single and double quotes.
But unless I use my Linux box I only have bash version 3.2.x, but almost everyone has POSIX compliance. <wink>
Oh, OK. ! is a command line history expansion thing. This is really quite sad as even this simple command will fail with a weird error about events:

Code:
echo "Hello, World!"

This expanson should only impact command line code, scripts using ! should work fine in 3.2.x. I also believe that if a whitespace character follows bash will not try to expand from the history. I don't have access to 3.2.x bash to test, but believe this should work OK from the command line:
Code:
if awk "BEGIN{exit ! ($num1 > $num2)}"; then echo "OK."; fi


Last edited by Chubler_XL; 10-23-2019 at 06:11 PM..
# 13  
Old 10-23-2019
Quote:
Originally Posted by Chubler_XL
Oh, OK. ! is a command line history expansion thing. This is really quite sad as even this simple command will fail with a weird error about events:

Code:
echo "Hello, World!"

This expanson should only impact command line code, scripts using ! should work fine in 3.2.x. I also believe that if a whitespace character follows bash will not try to expand from the history. I don't have access to 3.2.x bash to test, but believe this should work OK from the command line:
Code:
if awk "BEGIN{exit ! ($num1 > $num2)}"; then echo "OK."; fi

Works as expected now! <thumbs_up>

Code:
Last login: Wed Oct 23 21:29:52 on ttys000
AMIGA:amiga~> num1=1.2345
AMIGA:amiga~> num2=0.9876
AMIGA:amiga~> if awk "BEGIN{exit ! ($num1 > $num2)}"; then echo "OK."; fi
OK.
AMIGA:amiga~> if awk "BEGIN{exit ! ($num1 < $num2)}"; then echo "OK."; fi
AMIGA:amiga~> _

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

[BASH] Floating point exception

Heyas I have a script (vhs - video handler script, using ffmpeg) to encode videos. It also encodes a dvd, but until now just non-copy-protected ones, so i've tried to add/implement a vobcopy wrapper to be used by my script. At first it looked quite fine, but when changing from the first VOB... (9 Replies)
Discussion started by: sea
9 Replies

2. Shell Programming and Scripting

Comparison of floating point values in shell

Hi Everyone , Need a simple code here , I Have a number in a variable say $a=145.67 . This value changes everytime loop begins . I need to print a specific message as shown below when the above variable lies in a specific range i.e. 1.if $a lies within 100 and 200 , it should display... (2 Replies)
Discussion started by: robert89
2 Replies

3. Shell Programming and Scripting

Floating Point Numbers in c shell!

I have started using bash but this script which I am working on it, is in c chell. So here is my simple problem: set x = 0.4124\0.234 echo $x 0.4124.0.234 Same operation in Bash gives me correct result in my terminal. So there is something with my c shell that is causing this behaviour.... (8 Replies)
Discussion started by: dixits
8 Replies

4. UNIX for Dummies Questions & Answers

Add floating point numbers from file

How do I use bash to add all the floating point numbers saved in a file like this? 490.47 244.61 263.07 131.59 246.81 115.20 (3 Replies)
Discussion started by: locoroco
3 Replies

5. Programming

Testing floating point numbers

Hi guys I have problem with my simple calculator, author of my book wrote One way I tried is to test if one the inpur number is grater than zero, and then substatct And my protptype function is #include <stdio.h> int main(void) { float a, b , result; ... (11 Replies)
Discussion started by: solaris_user
11 Replies

6. Shell Programming and Scripting

How to compare floating point numbers in shell script?

How can we compare 2 floating point numbers in SHELL script? (11 Replies)
Discussion started by: dearanik
11 Replies

7. Shell Programming and Scripting

floating point numbers in if

# if > then > echo "1" > else > echo "2" > fi -bash: How can i compare floating point numbers inside statement? (15 Replies)
Discussion started by: proactiveaditya
15 Replies

8. Shell Programming and Scripting

sed to extract only floating point numbers from HTML

Hi All, I'm trying to extract some floating point numbers from within some HTML code like this: <TR><TD class='awrc'>Parse CPU to Parse Elapsd %:</TD><TD ALIGN='right' class='awrc'> 64.50</TD><TD class='awrc'>% Non-Parse CPU:</TD><TD ALIGN='right' class='awrc'> ... (2 Replies)
Discussion started by: pondlife
2 Replies

9. Shell Programming and Scripting

How to Compare Floating point / real numbers

Hai, Can you please guide me, to compare the floating point numbers. Eg. If then echo "value1 is grater " fi This code is not working properly when i excuted with floating values or real numbers (13 Replies)
Discussion started by: padarthy
13 Replies

10. Shell Programming and Scripting

problem with floating point numbers in awk

hi all, i have the following problem using awk in a script i want to read the values from a column with real numbers and calculate the mean.the problem is that when i use a statement such as this num = $4 i cant find a way to convert the variable from string to floating point to perform... (7 Replies)
Discussion started by: kanagias
7 Replies
Login or Register to Ask a Question