Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help using math in unix script

Status
Not open for further replies.

Kipnep70

Technical User
Nov 18, 2003
81
US
I have a question...

I know how to do simple math such as:

answer=$(( 5 + 2 ))

but how do I get the shell to return a decimal number like:

answer=$(( 5 / 2 ))

The above returns a 4 and mod returns a 1, but what if I want to have returned a 4.5?

 
For me you must use ksh-93 to do floating point math.
A workaround is to use bc or awk

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top