![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to add numbers | email-lalit | Shell Programming and Scripting | 8 | 05-12-2008 07:34 PM |
| need top 3 numbers | shary | Shell Programming and Scripting | 4 | 03-25-2008 01:58 AM |
| ksh and hex numbers | JamesByars | Shell Programming and Scripting | 2 | 01-15-2008 03:36 PM |
| How to add numbers? | pnxi | Shell Programming and Scripting | 7 | 09-11-2003 07:25 AM |
| Add some numbers! | TalkShowHost | Shell Programming and Scripting | 3 | 05-15-2002 01:28 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
how can i add two numbers
hi,
i am having one file which looks like the one below: ABC1 *** 1 4 ABC2 *** 7 12 ABC3 *** 0 34 ... i want to add the two numbers below each ABC and i want to find the largest out of this.. for example: in this case, 0+34=34 is the largest value and i want to get the result ABC3 into a variable. can anyone help me... thanks, Krips. |
|
||||
|
How to sum values from two different files?
Hi
I am trying to add count values from two different files into one file. Could any body please suggest me best command to do this? My problem was as follows: a.txt b.txt c.txt 10 20 30(needed) i tried cat a.txt b.txt > c.txt (its not adding the values) Thanks in advance.. Praveen |
|
||||
|
npk2210, if you are talking about adding the line count of the files this will work.
#!/bin/ksh one=`wc -l a.txt|awk '{print $1}'` two=`wc -l b.txt|awk '{print $1}'` echo "$one $two" |awk '{sum=($1 + $2 ); print sum}' > c.txt if your not wanting lines try man wc and see the options you have, hope this was what you were talking about. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|