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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T11:56:08+00:00 2026-06-16T11:56:08+00:00

In short, I want something works like this: When I input a date like

  • 0

In short, I want something works like this:

  1. When I input a date like 2012-12-27 and want to expand the date by
    week(start with Monday), it
    outputs:2012-12-24,2012-12-25,2012-12-26,2012-12-27,2012-12-28,2012-12-29,2012-12-30
  2. When I input a date like 2012-12-27 and want to expand the date by month, it outputs:2012-12-01,2012-12-02 ... 2012-12-31

or, how can I group a bunch of dates by week? e.g. when I input2012-12-01,2012-12-02 ... 2012-12-31. It outputs:2012-12-01,2012-12-02|2012-12-03 ... 2012-12-09|2012-12-10 ... 2012-12-16|...|2012-12-31

I have no idea how to complete this, any clue may be helpful!

  • 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-16T11:56:09+00:00Added an answer on June 16, 2026 at 11:56 am
    DAYSECS=86400                          # seconds in a day
    WEEKSECS=604800
    
    echo "Expand on week:"
    
    g_epoch=$(date +"%s" -d $1)            # given date as seconds from epoch
    g_dayno=$(date +"%u" -d $1)            # given date as day of week
    g_month=$(date +"%m" -d $1)            # given month
    g_year=$(date +"%Y" -d $1)             # given year
    
    s_epoch=$(($g_epoch - $DAYSECS * ($g_dayno - 1)))
    e_epoch=$(($s_epoch + $WEEKSECS))
    for etime in $(seq $s_epoch $DAYSECS $e_epoch); do
      date +"%Y-%m-%d" -d "@$etime"
    done
    
    echo "Expand on month:"
    
    s_epoch=$(date +"%s" -d "$g_year-$g_month-01")
    e_epoch=$(($s_epoch + 4 * $WEEKSECS))
    for etime in $(seq $s_epoch $DAYSECS $e_epoch); do
      if [ $(date +"%m" -d "@$etime") -ne "$g_month" ]; then
        break;
      fi  
      date +"%Y-%m-%d" -d "@$etime"
    done
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to draw a graph that will be something like this: alt text
I want to develop a short url system, like bitly, and I have a
I have array $arr=array(a=>array(b=>123)) and I need to do with it something like this:
I want to do something of the sort: for i in 1 2 3
I want to have something on my site that follows the mouse around, sort
In short: I want to have two fullscreen views, where I can switch between
SHORT DESCRIPTION OF PROBLEM: I want to set the text of a searchbar without
I want to store short arrays in a field. (I realize there are reasons
I want to consult SQL Server OR short-circuit Code: DECLARE @tempTable table ( id
I want to make a long list short by hiding some elements in long

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.