Welcome to Linux Forums!

With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.

Linux Forum ArticlesLinux ForumsLinux Forum DownloadsLinux Hosts
Home|Register|FAQ|Member List|Calendar|Unanswered Posts|Forum Rules|Today's Posts|Advanced Search|
SEARCH FOR IN
Go Back   Linux Forums > GNU Linux Zone > Linux Programming & Scripting
Reload this Page EXPR the value of 2 files
Linux Forums
Linux Forums
Welcome To The Linux Forums!
Welcome to Linux Forums. We pride ourselves in being one of the largest Linux communities on the web, we encourage you to REGISTER on our forums and participate in the community. There are over 150,000 members ready to answer your questions. JOINING US today will allow you to make new posts, get support, send messages to other members and submit downloads to our downloads directory and many other great features!

Linux Programming & Scripting C, Perl, PHP, Bash Scripts, anything programming or script related post in here!

Reply
 
Thread Tools Display Modes
Old 05-10-2008   #11 (permalink)
radoulov
Just Joined!
 
radoulov's Avatar
 
Join Date: Sep 2007
Posts: 83
Use awk:

Code:
awk 'NR == FNR { _[FNR] = $0; next }
$0 = ($0 && _[FNR]) ? sprintf("%.10f", $0 / _[FNR]) : 0x
' file1 file2
radoulov is offline   Reply With Quote
Old 05-11-2008   #12 (permalink)
markbusu
Just Joined!
 
Join Date: May 2008
Posts: 16
Thanks m8!!

However just to confirm... what would you add to get the output in the text file final??

Thanks!!
markbusu is offline   Reply With Quote
Old 05-11-2008   #13 (permalink)
radoulov
Just Joined!
 
radoulov's Avatar
 
Join Date: Sep 2007
Posts: 83
You're welcome!

Code:
awk 'NR == FNR { _[FNR] = $0; next }
$0 = ($0 && _[FNR]) ? sprintf("%.10f", $0 / _[FNR]) : 0x
' file1 file2>final
radoulov is offline   Reply With Quote
Old 05-12-2008   #14 (permalink)
markbusu
Just Joined!
 
Join Date: May 2008
Posts: 16
That did it... thanks!
markbusu is offline   Reply With Quote
Old 05-14-2008   #15 (permalink)
markbusu
Just Joined!
 
Join Date: May 2008
Posts: 16
Hello Again,

I need to do a slight modification to the following statement

awk 'NR == FNR { _[FNR] = $0; next }
$0 = ($0 && _[FNR]) ? sprintf("%.6f", $0 / _[FNR]) : 0x
' NoExec.txt TotExec.txt>Final.txt

I need the statement above to do [TotExec.txt] * 1000 / NoExec.txt

I tried modifying the above, however no luck..

Any advice? Thanks!
markbusu is offline   Reply With Quote
Old 05-15-2008   #16 (permalink)
radoulov
Just Joined!
 
radoulov's Avatar
 
Join Date: Sep 2007
Posts: 83
Like this?

Code:
awk 'NR == FNR { _[FNR] = $0; next }
$0 = ($0 && _[FNR]) ? sprintf("%.10f", ($0 * 1000) / _[FNR]) : 0x
' NoExec.txt TotExec.txt>Final.txt
radoulov is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


All times are GMT. The time now is 09:53 AM.

Powered by vBulletin 3.6.8 ©2000 - 2007, content relevant URLs by vBSEO, Property of Core Root.

Content Relevant URLs by vBSEO 3.0.0