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 Text file that contains data separated with a comma , . How
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 text file that contains a list of filenames, minus the extension,
I have a text file that contains references to variables and lets a user
I have a text file that contains about 100000 articles. The structure of file
I have a text file that contains a bunch of sentences. The sentences contain
I have a text ( .txt ) file that contains Java code! I want
I have a text file words.txt that contains english words. Let's assume it contains
I have a text file that contains a list of regexp's which I regularly

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.