The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Get date and time for past 1 hour from current date spch2o Shell Programming and Scripting 5 08-29-2008 04:32 AM
Perl: Extracting date from file name and comparing with current date MKNENI Shell Programming and Scripting 4 03-26-2008 04:01 PM
How to Calculate weekly date range mamta UNIX for Dummies Questions & Answers 1 03-06-2008 06:50 AM
How can I use mathematic calculate in date? guitaroa47 Shell Programming and Scripting 1 06-05-2007 07:37 AM
File date vs Current date trexlim Shell Programming and Scripting 4 05-04-2007 09:35 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 02-27-2008
rinku rinku is offline
Registered User
  
 

Join Date: May 2007
Posts: 54
calculate the date of next satureday of current date.

I want to calculate the date of next satureday of current date using shell script.

Suppose, today is 27-feb-08
I want to get the date of next satureday, which means 01-mar-08, in the formate '' YYMMDD ".

I do this in ksh..

Please tell me any type of command which help me out.

Thanks in advance...

Last edited by rinku; 02-27-2008 at 12:17 AM..
  #2 (permalink)  
Old 02-27-2008
Ygor's Avatar
Ygor Ygor is offline Forum Staff  
Moderator
  
 

Join Date: Oct 2003
Location: -31.96,115.84
Posts: 1,407
Got gnu date?
Code:
$ date -d 'next sat' '+%y%m%d'
080301
  #3 (permalink)  
Old 09-02-2008
Rocky Raja Rocky Raja is offline
Registered User
  
 

Join Date: May 2008
Location: India
Posts: 2
Post

The date -d option is not working for me...

I want to find the future date i.e. next monday.
The date format be anything just need to have a validation check for my application program. Help me on this.
  #4 (permalink)  
Old 09-02-2008
Ygor's Avatar
Ygor Ygor is offline Forum Staff  
Moderator
  
 

Join Date: Oct 2003
Location: -31.96,115.84
Posts: 1,407
Try this function...
Code:
#!/usr/bin/ksh

function dayshift {
  perl -e '@f = localtime(time+(86400*$ARGV[0]));
    printf "%04d%02d%02d\n", $f[5]+1900, $f[4]+1, $f[3];' -- $1
}

NEXT_MONDAY=$(dayshift $((8-$(date '+%u'))))
...format is YYYYMMDD, but change the printf if you want.
Sponsored Links
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 02:57 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0