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 4086370
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T18:43:01+00:00 2026-05-20T18:43:01+00:00

I have a text file that contains date, and two time-strings separated by spaces

  • 0

I have a text file that contains date, and two time-strings separated by spaces (a lot of these) in the format as given below:

2011-03-05 15:16:41 15:16:42  

My question is this:
Using awk, how can I separate the time instants, assign them to variables and then subtract them? The answer to the above string would be something like:

2011-03-05 0:0:1  

The text file is made up of a lot of lines of the above format.

I have gone through SO and see that there are a lot of date and time arithmetic questions, but none that would seem to fit to this particular requirement.

Any help is most welcome,
Sriram

  • 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-20T18:43:02+00:00Added an answer on May 20, 2026 at 6:43 pm

    Here is a simple awk script which does not use any time functions:

    $ cat subtract.awk
    
    {
    hh1=substr($2,1,2);
    mm1=substr($2,4,2);
    ss1=substr($2,7,2);
    
    hh2=substr($3,1,2);
    mm2=substr($3,4,2);
    ss2=substr($3,7,2);
    
    time1=hh1*60*60 + mm1*60 + ss1;
    time2=hh2*60*60 + mm2*60 + ss2;
    
    diff=time2-time1;
    
    printf "%s %d:%d:%d\n",$1,diff/(60*60),diff%(60*60)/60,diff%60;
    }
    

    The input data:

    $ cat file.txt
    2011-03-05 15:16:41 15:16:42
    

    Run it:

    $ awk -f subtract.awk < file.txt
    
    2011-03-05 0:0:1
    

    Alternatively, you can use mktime:

    {
        date=$1
        gsub(/[-:]/," "); 
        diff=mktime ($1" "$2" "$3" "$7" "$8" "$9) - mktime ($1" "$2" "$3" "$4" "$5" "$6);  
        printf "%s %d:%d:%d\n",date,diff/(60*60),diff%(60*60)/60,diff%60;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text file that contains localized language strings that is currently encoded
I have a text file that contains a long list of entries (one on
I have a basic C# console application that reads a text file (CSV format)
I have a text file that is encoded in UTF-8. I'm reading it in
Scenario: I have a text file that has pipe (as in the | character)
I have a small text file that I'd like to read into a scalar
I'm working in Visual Studio 2005 and have added a text file that needs
I have a rather large text file that has a bunch of missing newlines,
I have a text file on my local machine that is generated by a
I have a simple WPF (XAML) file that has some animated shapes and text.

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.