The UNIX and Linux Forums  

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
Need shell script to read two file at same time and print out in single file sreedhargouda Shell Programming and Scripting 10 03-16-2009 01:36 PM
cut numbers from file giri_luck Shell Programming and Scripting 3 06-10-2008 09:17 AM
How to perform addition of two numbers in shell scripting in Solaris-10 krevathi1912 SUN Solaris 9 11-29-2007 09:36 AM
Addition of numbers in unix asinha63 Shell Programming and Scripting 3 03-14-2006 12:38 PM
loop through file of numbers frustrated1 Shell Programming and Scripting 12 08-15-2005 11:32 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 04-02-2009
chinni-script chinni-script is offline
Registered User
  
 

Join Date: Apr 2009
Posts: 3
Addition of all the numbers in a single file

Hi All ,


Want to know the "sum" of all the digits in below file called "/sample" .Could some one please let me know the script either command .

cat /sample
12
34
23
23

Best Regards,
Chinni .
  #2 (permalink)  
Old 04-02-2009
jim mcnamara jim mcnamara is online now Forum Staff  
...@...
  
 

Join Date: Feb 2004
Location: NM
Posts: 5,769
Code:
awk '{sum+=$1} END {print sum}' ./sample
  #3 (permalink)  
Old 04-02-2009
vgersh99's Avatar
vgersh99 vgersh99 is online now Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,122
Code:
echo `sed -e 's/$/+/' /sample` 0 | bc
# OR
echo `tr '\n' '+' < /sample` 0 |bc
  #4 (permalink)  
Old 04-02-2009
radoulov's Avatar
radoulov radoulov is offline Forum Staff  
addict
  
 

Join Date: Jan 2007
Location: Варна, България / Milano, Italia
Posts: 2,892
Or:

Code:
paste -sd+ sample|bc
  #5 (permalink)  
Old 04-04-2009
cfajohnson's Avatar
cfajohnson cfajohnson is offline Forum Advisor  
Shell programmer, author
  
 

Join Date: Mar 2007
Location: Toronto, Canada
Posts: 2,361
Code:
printf "%d\n" $(( `tr -s '\n' '+' < /sample` 0 ))
  #6 (permalink)  
Old 04-05-2009
chinni-script chinni-script is offline
Registered User
  
 

Join Date: Apr 2009
Posts: 3
Thank you very much for all ,who replied to my query .Its my first posting and really impresive looking all u r reponce .Sincere thanks to the person who started this forum .

-Chinni
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:35 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