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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T04:41:02+00:00 2026-05-24T04:41:02+00:00

I like GNU/Linux and writing bash scripts to automatize my tasks. But I am

  • 0

I like GNU/Linux and writing bash scripts to automatize my tasks. But I am a beginner and have a lot of problems with it. So, I have a subtitle file in format like I this(I’m Polish so it’s a Polish subtitles):

  00:00:27:W zamierzchłych czasach|ziemia pokryta była lasami.
  00:00:31:Od wieków mieszkały|w nich duchy bogów.
  00:00:37:Człowiek żył w harmonii ze zwierzętami.

I thing you understanding this simple format. The problem is that in the “movie file”, before the movie starts is 1:15 of introduction. I want to add to each subtitle file’s line 1:15. So the example should look like this:

  00:01:43:W zamierzchłych czasach|ziemia pokryta była lasami.
  00:01:46:Od wieków mieszkały|w nich duchy bogów.
  00:01:52:Człowiek żył w harmonii ze zwierzętami.

Could you help me to write this script?

BTW I’m Polish and I’m still learning English. So if you cannot understand me, write.

  • 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-24T04:41:05+00:00Added an answer on May 24, 2026 at 4:41 am

    Here’s a solution in awk – probably easier than bash for this kind of problem:

    #!/usr/bin/awk -f
    
    BEGIN {
      FS=":"
    }
    
    {
      hr = $1
      min = $2
      sec = $3
    
      sec = sec + 15
      if (sec >= 60) {
        sec = sec - 60
        min = min + 1
      }
    
      min = min + 1
      if (min >= 60) {
        min = min - 60
        hr = hr + 1
      }
    
      printf "%02d:%02d:%02d:%s\n", hr, min, sec, $4 
    }
    

    Suggestions for improvement welcome!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to write a bash script which will, given the name of a
I would like to be able to loop through a list which is a
I would like to covert a QString into either a utf8 or a latin1
I am trying to make something like a Java style Enum, which I'm calling
I am trying to get a cronjob to pipe output into a dated file
I have a postgres table that has the following fields start_date,duration duration contains any
What is the safe/portable way to convert a number to a string (and the
folks, i created an application which consist of GTK+ library and some linked-list on
Just for s & g. I wanted to build my own library in C.
I am a newbie to LLVM and try to generate a human readable .ll

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.