LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 06-02-2014, 11:42 AM   #1
tribescribe
LQ Newbie
 
Registered: Jun 2014
Posts: 4

Rep: Reputation: Disabled
How to put the division of two variables in another variable?


I have var1 and var2, I want to put var2/var1 into var3.
For some reason var3=$var2/$var1 doesn't evaluate the division.

Last edited by tribescribe; 06-02-2014 at 11:59 AM.
 
Old 06-02-2014, 12:01 PM   #2
potato_farmer
Member
 
Registered: May 2014
Posts: 55

Rep: Reputation: Disabled
Are you trying to do this in bash?

If so, take a look at this:
http://bash.cyberciti.biz/guide/Perf...tic_operations
 
1 members found this post helpful.
Old 06-02-2014, 12:05 PM   #3
tribescribe
LQ Newbie
 
Registered: Jun 2014
Posts: 4

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by potato_farmer View Post
Are you trying to do this in bash?
[/url]
A script in a text editor. Is there a difference?
 
Old 06-02-2014, 12:05 PM   #4
MensaWater
LQ Guru
 
Registered: May 2005
Location: Atlanta Georgia USA
Distribution: Redhat (RHEL), CentOS, Fedora, CoreOS, Debian, FreeBSD, HP-UX, Solaris, SCO
Posts: 7,831
Blog Entries: 15

Rep: Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669
Use bc (binary calculator) for any math you want to do.

For integer/non-floating point:
var3=$(echo $var1 \/ $var2 |bc)
So if var1 is 6 and var2 is 2 then var3 will result in value of 3.
NOTE: Bash has integer math built into it but if you get in the habit of using bc you can expand what you do as shown below.

For floating point you'd have to use "bc -l".
var3=$(echo $var1 \/ $var2 |bc -l)
So if var1 is 7 and var2 is 2 then var3 will result in value of 3.500000.

You might also need to echo "scale=<value>" into bc -l if you want to limit how many digits so you'd have to put a new line between that and the division.

var3=$(echo -e scale=2 "\n" $var1 \/ $var2 |bc -l)
So if var1 is 7 and var2 is 2 then var3 will result in value of 3.50

You can do "man bc" for more detail on the bc command.
 
4 members found this post helpful.
Old 06-02-2014, 12:23 PM   #5
tribescribe
LQ Newbie
 
Registered: Jun 2014
Posts: 4

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by MensaWater View Post
Use bc (binary calculator) for any math you want to do.

For integer/non-floating point:
var3=$(echo $var1 \/ $var2 |bc)
So if var1 is 6 and var2 is 2 then var3 will result in value of 3.
NOTE: Bash has integer math built into it but if you get in the habit of using bc you can expand what you do as shown below.

For floating point you'd have to use "bc -l".
var3=$(echo $var1 \/ $var2 |bc -l)
So if var1 is 7 and var2 is 2 then var3 will result in value of 3.500000.

You might also need to echo "scale=<value>" into bc -l if you want to limit how many digits so you'd have to put a new line between that and the division.

var3=$(echo -e scale=2 "\n" $var1 \/ $var2 |bc -l)
So if var1 is 7 and var2 is 2 then var3 will result in value of 3.50

You can do "man bc" for more detail on the bc command.
What is the \/ for? Why not just /?
 
1 members found this post helpful.
Old 06-02-2014, 12:38 PM   #6
djtoltz
Member
 
Registered: Nov 2003
Location: Eastern North Carolina, USA
Distribution: Mandrake
Posts: 51

Rep: Reputation: 20
The \ in front of the / prevents the shell from giving the / special meaning. It's just saying treat the next character as a literal, rather than a special character.

What MensaWater is doing with that statement is formatting a string and sending it to bc as a command. I believe you could just enclose the input to bc in quotes, which might be more legible, as follows ...

echo "$var1/$var2" | bc

... as long as you don't use single quotes, the shell will convert the $vars to their values in the string.
 
2 members found this post helpful.
Old 06-02-2014, 12:48 PM   #7
tribescribe
LQ Newbie
 
Registered: Jun 2014
Posts: 4

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by djtoltz View Post
The \ in front of the / prevents the shell from giving the / special meaning. It's just saying treat the next character as a literal, rather than a special character.

What MensaWater is doing with that statement is formatting a string and sending it to bc as a command. I believe you could just enclose the input to bc in quotes, which might be more legible, as follows ...

echo "$var1/$var2" | bc

... as long as you don't use single quotes, the shell will convert the $vars to their values in the string.
Wait isn't the shell supposed to take the special meaning of / (i.e. division)? Also isn't $ a special character like /? Why doesn't it have a \ in front of it too?
 
Old 06-02-2014, 12:59 PM   #8
djtoltz
Member
 
Registered: Nov 2003
Location: Eastern North Carolina, USA
Distribution: Mandrake
Posts: 51

Rep: Reputation: 20
If you escaped the $ sign, the shell would pass "$var", when you want the value of $var. You only want to escape things that you don't want the shell to process.
Yes, the "/" could be used for integer division, but that wasn't what you asked. You asked why it was escaped. It is escaped, so it gets passed literally to bc, which is another program that does math.

You can also do math in the shell with something like var3=$(( var1 / var2 ));
 
1 members found this post helpful.
Old 06-02-2014, 01:31 PM   #9
MensaWater
LQ Guru
 
Registered: May 2005
Location: Atlanta Georgia USA
Distribution: Redhat (RHEL), CentOS, Fedora, CoreOS, Debian, FreeBSD, HP-UX, Solaris, SCO
Posts: 7,831
Blog Entries: 15

Rep: Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669
The reason I use escapes and the parentheses is that over time I've found that various scripts work better with them. Having them when they're NOT necessary seldom hurts anything but NOT having them when they are necessary gives very odd results indeed.
 
Old 06-02-2014, 01:36 PM   #10
djtoltz
Member
 
Registered: Nov 2003
Location: Eastern North Carolina, USA
Distribution: Mandrake
Posts: 51

Rep: Reputation: 20
MensaWater, you'll get no argument from me. I was just trying to clear up some confusion. Shell scripts can be very hard to read; especially when you're just getting started. I still cringe at the math syntax.
 
Old 06-02-2014, 06:51 PM   #11
the dsc
Member
 
Registered: May 2009
Distribution: Debian
Posts: 175
Blog Entries: 243

Rep: Reputation: 47
Quote:
Originally Posted by tribescribe View Post
A script in a text editor. Is there a difference?
"Bash" is one of the languages/interpreters that can execute a script. While you can use a text editor to write in any language, the syntax will eventually differ from language/interpreter to another, that's what he was asking.

Some scripting languages are similar enough to be compatible to some degree (like bash and dash), but even then there will be some differences. Other languages are more dramatically different, like python, which forces you to "format" the text with indentation (you can do that in bash, but it's entirely optional), as far as I know.
 
2 members found this post helpful.
Old 06-02-2014, 07:32 PM   #12
the dsc
Member
 
Registered: May 2009
Distribution: Debian
Posts: 175
Blog Entries: 243

Rep: Reputation: 47
Quote:
Originally Posted by tribescribe View Post
Wait isn't the shell supposed to take the special meaning of / (i.e. division)? Also isn't $ a special character like /? Why doesn't it have a \ in front of it too?
As long as there are no critical file operations involved, it's safe to just test stuff like that on the command line or mini-scripts focusing just on one aspect like this.

What happens in this instance is that the second command, bc (which does math, more sophisticatedly than bash's built-in math), after the "pipe", "|", is the one that is supposed to interpret "/" as a division symbol; "echo" is just "telling" the math bc should do, not solving anything itself.

In this expression escaping the division slash is strictly unnecessary/has no effect, since the slash/division isn't within a context that would be interpreted as a division anyway. That is, if you issue on the command prompt, "echo 12/2" (or "var1=12 ; var2=2 ; echo $var1/$var2"), the output will be literally "12/2", not "6". And bc, unlike bash, "gets" that "\/" really means just "/".

In the other hand, if you issued "echo $((12/2))" (or that with vars), the output is "6". But "echo $((12\/6))" will complain of an invalid operator, "\/".

You "could" do "echo $((12/2)) | bc", but that has the same effect of "echo 6 | bc", that is, bc is doing nothing, is like telling someone to type "12/2" in a calculator and that person typing already just 6.



I hope I didn't make things even more confusing while trying to make it a little bit clearer.


I personally prefer to use quotes to pass literal expressions (and to not escape anything that's not needed, by consequence) -- which sometimes I'll only find out when whatever I'm trying to do isn't working, anyway. I'm not saying that it's the "proper way", I just find it easier, less ambiguous, to read.
 
1 members found this post helpful.
Old 06-04-2014, 02:07 PM   #13
prh47
LQ Newbie
 
Registered: Jun 2011
Distribution: Zorin Linux
Posts: 6

Rep: Reputation: 2
Advanced Bash-Scripting Guide is a good resource.
 
2 members found this post helpful.
Old 06-06-2014, 04:45 AM   #14
jordialcoi
LQ Newbie
 
Registered: Mar 2014
Location: Barcelona
Distribution: fedora & slackware
Posts: 5

Rep: Reputation: Disabled
Talking

Altough this is solved, I'll write my solution in a nutshell:

If it is an integer operation with an integer result, the bash built-in feature is enough:

$var3=$(($var2/$var1)) or $var3=$[$var2/$var1]

in this case if you try a division with a non-integer result, $var3 gets the 0 value always,
because bash always answer with integers, so the solution is to use bg, as pointed...

$var3=$(echo -e $var1/$var2 "\n" scale=2 | bc -l)
Note the -e switch, that tells echo to send the \n literally to bc, this is because bc need
a \n between operations, so if we divide 3/5, bc gets something like this:

scale=2
3/5

and exits, levaing the result at var3.
Ellegant.

Last edited by jordialcoi; 06-06-2014 at 05:11 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Put the value/output from 'ls' into variable keif Programming 7 10-05-2013 11:50 AM
Why can't I put variables in rsync command? Red Squirrel Linux - Software 3 02-15-2011 10:01 PM
how could i put a lot of arguments at one variable? DoME69 Programming 2 06-23-2008 03:29 AM
using bc to add numbers and put into variable disruptive Programming 3 05-26-2008 09:05 PM
where to put system-wide environment variables otoomet Linux - Software 2 01-07-2008 07:06 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 08:41 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration