Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 650523
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:03:45+00:00 2026-05-13T22:03:45+00:00

Say I have two files where there is one number per line File 1

  • 0

Say I have two files where there is one number per line

File 1      file 2
0.12        0.11     
0.121       0.454 
....        .... 

I want to create file or output difference between each number on to the screen, so that result looks like

 0.0099
-0.333
 ......

You can use bash/awk/sed

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T22:03:45+00:00Added an answer on May 13, 2026 at 10:03 pm

    awk

    awk '{getline t<"file1"; print $0-t}' file2  #file2-file1
    

    Explanation: getline t <"file1" gets a line from file1 and puts its value to variable t. $0 is the current record of file2 that awk is processing. the rest is just subtraction and printing the result out.

    Bash

    exec 4<"file1"
    while read -r line
    do
        read -r s <&4
        echo "${line}-${s}" | bc
    done <"file2"
    exec >&4-
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

say I have two files: file1 and file2 is there a single command that
Let's say I have two files default.aspx and the associated default.aspx.cs . default.aspx.cs: protected
Lets say i have at least two lua script files. test1.lua test2.lua both define
Okay, so let's say I have a mysql database table with two columns, one
Let's say I have two modules. One is core and another is core dependent
I have two tab delimited files, file 1 contains identifiers and file 2 has
I have a file folders.txt one two three four ... that has a list
I have two directories that contain files. I want to combine all these files
Say we have two activities, Activity1 and Activity2. In Activity1's onClick() method, we have
Say I have two Java apps that I wrote: Ping.jar and Pong.jar and they

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.