The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Converting integer to String ROOZ Shell Programming and Scripting 1 06-05-2008 01:38 PM
Compare integer value with decimal MARY76 Shell Programming and Scripting 3 07-25-2007 09:47 AM
unix script for converting a decimal to binary softy Shell Programming and Scripting 3 10-19-2005 09:33 AM
Help: How do I ADD non-integer (decimal) values? limshady411 Shell Programming and Scripting 2 09-07-2005 04:41 AM
command for converting string to integer esham Shell Programming and Scripting 1 08-04-2005 07:20 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 10-29-2007
idro idro is offline
Registered User
  
 

Join Date: Sep 2007
Posts: 6
Converting a decimal into integer

Hi all,

I'm trying to convert a decimal number into an integer number; I'm doing this:

n=`echo |awk '{ print "'"$mem"'"*10}'`

where the variable mem is equal to 3.7
I'd like to obtain 37, but the expression above gives me 30.

Help please!!!!
thx a lot
  #2 (permalink)  
Old 10-29-2007
earnstaf earnstaf is offline
Registered User
  
 

Join Date: May 2007
Posts: 113
Quote:
Originally Posted by idro View Post
Hi all,

I'm trying to convert a decimal number into an integer number; I'm doing this:

n=`echo |awk '{ print "'"$mem"'"*10}'`

where the variable mem is equal to 3.7
I'd like to obtain 37, but the expression above gives me 30.

Help please!!!!
thx a lot
Try
Code:
n=`echo "$mem * 10" | bc`
  #3 (permalink)  
Old 10-31-2007
idro idro is offline
Registered User
  
 

Join Date: Sep 2007
Posts: 6
It works, but now I obtain, 37.0.
I'd want 37.
  #4 (permalink)  
Old 10-31-2007
vgersh99's Avatar
vgersh99 vgersh99 is online now Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,119
Code:
echo '3.7 * 10' | bc | sed 's/[.].*//'
Code:
echo '3.7'  | nawk '{printf("%d\n", $1 * 10)}'
  #5 (permalink)  
Old 10-31-2007
idro idro is offline
Registered User
  
 

Join Date: Sep 2007
Posts: 6
GREAT!!!

Now it works.

thanx to all, guyz.
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 06:53 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0