Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Can we get every tuesday or monday's date for the current week Post 302506168 by Shell_Life on Friday 18th of March 2011 05:29:14 PM
Old 03-18-2011
I had a little extra time to play:
Code:
#!/bin/ksh
typeset -i mYear mMonth mDay
typeset -i mYear2 mMonth2
typeset -i mDaysWeek
set -A mNameDays N/A Sunday Monday Tuesday Wednesday Thursday Friday Saturday
clear
echo ""
echo "Based on a date (YMD) and a day of the week,"
echo "this script will display the equivalent date (YMD)"
echo "for the entered day of the week."
echo "Examples:"
echo "1) Date: 2010-12-31 and Saturday"
echo "   The output will be: 2011-01-01"
echo "2) Date: 2011-04-01 and Tuesday"
echo "   The output will be: 2011-03-29"
echo ""
echo "WARNING: No data validation will be performed."
echo "         Garbage in, garbage out."
echo ""
echo "Enter Year in the format (YYYY):"
read mYear
echo "Enter Month in the format (MM):"
read mMonth
echo "Enter Day in the format (DD):"
read mDayStr
mDay=${mDayStr}

# Inserts '0' to the left of single digit days:
cal ${mMonth} ${mYear} | sed -e 's/ \([1-9]\) /0\1 /g' -e 's/ \([1-9]\)$/0\1/' > /tmp/mFile_Calendar

# Remove lines without day numbers from calendar:
egrep -v '[a-z]' /tmp/mFile_Calendar > /tmp/mFile_Cal_Numbers

# Create a file with week current of day:
egrep "${mDayStr}" /tmp/mFile_Cal_Numbers > /tmp/mFile_Week

# Count the number of days in the week for calendar line:
mDaysWeek=`wc -w /tmp/mFile_Week | sed 's/ .*//'`
if [[ ${mDaysWeek} -eq 7 ]]; then
  mv /tmp/mFile_Week /tmp/mFile_Full_Week
  mMonth2=${mMonth}
  mYear2=${mYear}
else
  # If day is in first week of month:
  if [[ ${mDay} -lt 7 ]]; then
    # Get the last week of prior month:
    if [[ ${mMonth} -eq 1 ]]; then
      mMonth2=12
      mYear2=${mYear}-1
    else
      mMonth2=${mMonth}-1
      mYear2=${mYear}
    fi
    cal ${mMonth2} ${mYear2} | sed '$d' | tail -1 > /tmp/mFile_Week2
    cat /tmp/mFile_Week2 /tmp/mFile_Week | xargs > /tmp/mFile_Full_Week
  else
    # If day is in last week of month:
    # Get the first week of next month:
    if [[ ${mMonth} -eq 12 ]]; then
      mMonth2=1
      mYear2=${mYear}+1
    else
      mMonth2=${mMonth}+1
      mYear2=${mYear}
    fi
    # Inserts '0' to the left of single digit days:
    cal ${mMonth2} ${mYear2} | sed -e 's/ \([1-9]\) /0\1 /g' -e 's/ \([1-9]\)$/0\1/' > /tmp/mFile_Calendar2
    # Remove lines without day numbers from calendar:
    egrep -v '[a-z]' /tmp/mFile_Calendar2 > /tmp/mFile_Cal_Numbers2
    # Create a file with week current of day:
    # Create a file with week current of day:
    head -1 /tmp/mFile_Cal_Numbers2 > /tmp/mFile_Week2
    cat /tmp/mFile_Week /tmp/mFile_Week2 | xargs > /tmp/mFile_Full_Week
  fi
fi
clear
echo "==============================================="
echo "Following is the input date:"
echo "Year = ${mYear} Month = ${mMonth} Day = ${mDay}"
echo "Full week for the input date:"
echo "Su Mo Tu We Th Fr Sa"
cat /tmp/mFile_Full_Week
echo "Now enter the day of the week in the format (XX):"
echo "01-Sunday"
echo "02-Monday"
echo "03-Tuesday"
echo "04-Wednesday"
echo "05-Thursday"
echo "06-Friday"
echo "07-Saturday"
read mWeekDay
echo ${mNameDays[${mWeekDay}]}
mDay2=`cut -d' ' -f${mWeekDay} /tmp/mFile_Full_Week`
echo "For the above week, ${mNameDays[${mWeekDay}]} is:"
echo "Year = ${mYear2} Month = ${mMonth2} Day = ${mDay2}"
rm -f /tmp/mFile*
#---------------------- End of Script ---------------------#

 

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Getting week number of the "Monday"

Hi Friends, Can you help me with this, I would like to get the week number of the "Monday", Say if we run on first week of november it should give me output as "05" and "10" i.e it says the monday falls on 5th week of october. If we run on the second week of november it should give me "01"... (8 Replies)
Discussion started by: sbasetty
8 Replies

2. UNIX for Dummies Questions & Answers

I wanted to get the date of the first monday of a month.

Hi, I need to display the date of the first monday of a month. Can any one please help me on this. Thanks in advance. (6 Replies)
Discussion started by: Sheethal
6 Replies

3. UNIX for Advanced & Expert Users

Extract Monday from given date

Hi I want to extract the date on Monday depending upon the user input for that week. For example if the input date is 20080528 then the output should be 20080526. If the input is 20080525 then it will be 20080519 i am working on IBM AIX Thanks (2 Replies)
Discussion started by: itsme_maverick
2 Replies

4. Shell Programming and Scripting

Get the date of monday when running from Friday to next Thursday

Hi, I have a requirement where I want to get the date of monday when I am running the script from previous Friday to the following Thursday. For example: When ever I run the script between 19thFeb2010(Friday) to 25th Feb 2010(Thursday), I should get the date of 22nd Feb 2010 in the format of... (5 Replies)
Discussion started by: fasiazhar_411
5 Replies

5. Shell Programming and Scripting

Date One Week Ago From Given Date, Not From Current Date

Hi all, I've used various scripts in the past to work out the date last week from the current date, however I now have a need to work out the date 1 week from a given date. So for example, if I have a date of the 23rd July 2010, I would like a script that can work out that one week back was... (4 Replies)
Discussion started by: Donkey25
4 Replies

6. Shell Programming and Scripting

Get Date of Previous and next Monday

Hi, I would like to know how to get Previous Monday and Next Monday from the current date.. thanks (5 Replies)
Discussion started by: balasubramani04
5 Replies

7. Shell Programming and Scripting

Can we get Tuesday's date of the current week in UNIX

Hi All, I have a requirement which would calculate the Tuesday's date of the current week in yyyymmdd format in unix shell script. Please help me out how could I do this . I appreciate your help Regards, raj (7 Replies)
Discussion started by: rajeevm
7 Replies

8. Shell Programming and Scripting

Obtain date for first Tuesday of every month

Hi , Please help me out to write a shell script to obtain the date of first tueday of every month. I am new to shell scripting. Appreciate your help Thanks. (7 Replies)
Discussion started by: prongs22
7 Replies
ARRAY_UDIFF(3)								 1							    ARRAY_UDIFF(3)

array_udiff - Computes the difference of arrays by using a callback function for data comparison

SYNOPSIS
array array_udiff (array $array1, array $array2, [array $...], callable $value_compare_func) DESCRIPTION
Computes the difference of arrays by using a callback function for data comparison. This is unlike array_diff(3) which uses an internal function for comparing the data. PARAMETERS
o $array1 - The first array. o $array2 - The second array. o $value_compare_func - The callback comparison function. The comparison function must return an integer less than, equal to, or greater than zero if the first argument is considered to be respectively less than, equal to, or greater than the second. int callback (mixed $a, mixed $b) RETURN VALUES
Returns an array containing all the values of $array1 that are not present in any of the other arguments. EXAMPLES
Example #1 array_udiff(3) example using stdClass Objects <?php // Arrays to compare $array1 = array(new stdclass, new stdclass, new stdclass, new stdclass, ); $array2 = array( new stdclass, new stdclass, ); // Set some properties for each object $array1[0]->width = 11; $array1[0]->height = 3; $array1[1]->width = 7; $array1[1]->height = 1; $array1[2]->width = 2; $array1[2]->height = 9; $array1[3]->width = 5; $array1[3]->height = 7; $array2[0]->width = 7; $array2[0]->height = 5; $array2[1]->width = 9; $array2[1]->height = 2; function compare_by_area($a, $b) { $areaA = $a->width * $a->height; $areaB = $b->width * $b->height; if ($areaA < $areaB) { return -1; } elseif ($areaA > $areaB) { return 1; } else { return 0; } } print_r(array_udiff($array1, $array2, 'compare_by_area')); ?> The above example will output: Array ( [0] => stdClass Object ( [width] => 11 [height] => 3 ) [1] => stdClass Object ( [width] => 7 [height] => 1 ) ) Example #2 array_udiff(3) example using DateTime Objects <?php class MyCalendar { public $free = array(); public $booked = array(); public function __construct($week = 'now') { $start = new DateTime($week); $start->modify('Monday this week midnight'); $end = clone $start; $end->modify('Friday this week midnight'); $interval = new DateInterval('P1D'); foreach (new DatePeriod($start, $interval, $end) as $freeTime) { $this->free[] = $freeTime; } } public function bookAppointment(DateTime $date, $note) { $this->booked[] = array('date' => $date->modify('midnight'), 'note' => $note); } public function checkAvailability() { return array_udiff($this->free, $this->booked, array($this, 'customCompare')); } public function customCompare($free, $booked) { if (is_array($free)) $a = $free['date']; else $a = $free; if (is_array($booked)) $b = $booked['date']; else $b = $booked; if ($a == $b) { return 0; } elseif ($a > $b) { return 1; } else { return -1; } } } // Create a calendar for weekly appointments $myCalendar = new MyCalendar; // Book some appointments for this week $myCalendar->bookAppointment(new DateTime('Monday this week'), "Cleaning GoogleGuy's apartment."); $myCalendar->bookAppointment(new DateTime('Wednesday this week'), "Going on a snowboarding trip."); $myCalendar->bookAppointment(new DateTime('Friday this week'), "Fixing buggy code."); // Check availability of days by comparing $booked dates against $free dates echo "I'm available on the following days this week... "; foreach ($myCalendar->checkAvailability() as $free) { echo $free->format('l'), " "; } echo " "; echo "I'm busy on the following days this week... "; foreach ($myCalendar->booked as $booked) { echo $booked['date']->format('l'), ": ", $booked['note'], " "; } ?> The above example will output: I'm available on the following days this week... Tuesday Thursday I'm busy on the following days this week... Monday: Cleaning GoogleGuy's apartment. Wednesday: Going on a snowboarding trip. Friday: Fixing buggy code. NOTES
Note Please note that this function only checks one dimension of a n-dimensional array. Of course you can check deeper dimensions by using array_udiff($array1[0], $array2[0], "data_compare_func");. SEE ALSO
array_diff(3), array_diff_assoc(3), array_diff_uassoc(3), array_udiff_assoc(3), array_udiff_uassoc(3), array_intersect(3), array_inter- sect_assoc(3), array_uintersect(3), array_uintersect_assoc(3), array_uintersect_uassoc(3). PHP Documentation Group ARRAY_UDIFF(3)
All times are GMT -4. The time now is 01:23 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy