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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T23:08:42+00:00 2026-06-07T23:08:42+00:00

this is a question similar to this one . But I am not good

  • 0

this is a question similar to this one.

But I am not good at shell scripting, so I still want to ask you for help…

My situation is a little different: the date string is in the file.

These files (more than 700) are named msg00000.html to msg00721.html. Each one have a line like this:

<li><em>Date</em>: Thu, 22 Jul 2010 00:44:57 +0800</li>

After a lot of googling, I finally find them out using this:

grep "<li><em>Date" msg00000.html | cut -d' ' -f2-7 | tr -d "</li>"

The output is exactly what I want:

Thu, 22 Ju 2010 00:44:57 +0800

And I know use touch -md "Thu, 22 Ju 2010 00:44:57 +0800" msg00000.html can modify the mtime.

However, would anyone could help me combining them together? And do this for 723 files…

Thanks…

Edit

Well, I finally figured out how to:

for f in *.html; do touch -md "$(grep '<li><em>Date' $f | cut -d' ' -f2-7 | sed 's/<\/li>//')" "$f"; done

That’s quite a long command…

Actually the problem is in the tr command. It delete all the characters when using -d, not the pattern. So the date Thu, 22 Ju 2010 00:44:57 +0800 is wrong. It should be Thu, 22 Jul 2010 00:44:57 +0800. Yes, there is an “l” missing, which was deleted by tr -d. LOL.

  • 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-06-07T23:08:43+00:00Added an answer on June 7, 2026 at 11:08 pm
    for i in {0..721}; do touch -md "`grep '<li><em>Date' $(printf 'msg%05d.html' $i) | sed -e 's#<[^>]*>##g' | cut -d' ' -f2-7`" $(printf 'msg%05d.html' $i); done
    

    I’m sure an awk guru will be along shortly to show us how to do it in 20 characters, but this should do the trick.

    EDIT: Remember, kids, it’s important to get some sleep instead of trying to answer questions on the internet. You don’t want to end up posting ridiculous answers like this, do you?

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

Sidebar

Related Questions

my question is similar to this one , but I don't want to use
I have a question very similar to this one but the answer does not
I know there are questions similar to this one, but I've not found a
This question is similar to this one, but with an extra wrinkle: Auto-removing all
My question is similar to this one but none of the answers solve my
My question is similar to this one , but I would like to replicate
My question is similar to this one , but I can simplify it some.
The question is quite similar to this one , but I need to concentrate
My question popped up a very similar question, this one . But the accepted
The question is similar to this one , but I cannot figure how to

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.