Date calculation script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Date calculation script
# 1  
Old 03-23-2011
Date calculation script

hello!

I need a date calculation script that need to do that:
./date.sh 20090312
and the script need to give me which day is it for example monday friday or what else!
can anyone help me?? its really urgent :S thx the help!
# 2  
Old 03-23-2011
What have you tried so far?
This User Gave Thanks to Franklin52 For This Post:
# 3  
Old 03-23-2011
that's the problem. i dont have any solution how i need to start. i have write this :
Code:
#!/bin/bash/
DATE=$(echo $1 |awk 'BEGIN{FIELDWIDTHS="4 2 2"}{print $1 RS $2 RS $3 }')

YEAR=$(echo $DATE | cut -d ' ' -f1)
MONTH=$(echo $DATE | cut -d ' ' -f2)
DAY=$(echo $DATE | cut -d ' ' -f3)


if [ $MONTH -gt 12 ];
then
  echo "Wrong Month!!"
fi


if [ $DAY -gt 31 ];
then
  echo "Wrong Day!!"
fi

but this only check the month and the day validation.

Last edited by impish; 03-23-2011 at 10:50 AM.. Reason: Please use code tags and indentation
# 4  
Old 03-23-2011
What Operating System and version do you have?
Code:
uname -a

What Shell do you use?
Code:
echo $SHELL

And more specifically:
Do you have "perl"?
Do you have the GNU date package?

What is the normal value of your timezone?
Code:
echo $TZ

We know what your input looks like and can guess that your input date format is YYYYMMDD , but what output are you looking for? A numeric day of week (Sunday=0) or a character representation like "Wed" or "Wednesday" or whatever?
This User Gave Thanks to methyl For This Post:
# 5  
Old 03-23-2011
just need to write that for output wed or sun...!

---------- Post updated at 08:50 AM ---------- Previous update was at 08:49 AM ----------

and yes my input date format is yyyymmdd
# 6  
Old 03-23-2011
Assuming you are on a GNU/Linux platform:
Code:
$ date +%a --date "20090312"
Thu

This User Gave Thanks to fpmurphy For This Post:
# 7  
Old 03-23-2011
solved thx
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Date calculation in UNIX

I want to automate change in 'from yyyy/mm/dd to yyyy/mm/dd' every month in a unix program. For example in this month 'from yyyy/mm/dd to yyyy/mm/dd' is 'from 2014/10/01 to 2014/11/01' next month it should be 'from 2014/11/01 to 2014/12/01' Can any one provide me the code for the above... (2 Replies)
Discussion started by: srinivas kasett
2 Replies

2. UNIX for Dummies Questions & Answers

Need help regarding date calculation

Hi All, I need to calculate the date for monday to friday. Say today is 10.oct.2014 then I need to calculate the date as 09.oct.2014. If today is 13.oct.2014 then I need to calculate the date as 10.oct.2014. If its 03.Nov.2014 then date calculated must be 31.oct.2014. Please help in in... (2 Replies)
Discussion started by: abhi_123
2 Replies

3. Shell Programming and Scripting

How to do simple date (time) calculation in shell script?

Hi, I'm looking for a way to do a simple math calc during a shell script as a means of logging how long a particular task takes. For example... STARTTIME=whenever this script starts ./path/to/command.sh >>logfile.log TOTALTIME=<time at this stage of the script after above command... (7 Replies)
Discussion started by: nbsparks
7 Replies

4. Shell Programming and Scripting

Date calculation

Hi I have this date 11:30:02-31.11.12 How to calculate date between this date and now? I like it printed like this: 31D 2H 1M if possible. (6 Replies)
Discussion started by: Jotne
6 Replies

5. Shell Programming and Scripting

Date calculation, a little different...

Hello eveyone, I am tasked to write an (n)awk script to calculate the days between dates. Now before anyone chastizes me on how many forums there are on date calculation, I have no seen one that takes into account the Julian calender as well. As most know, September of 1752 is when we (the US)... (2 Replies)
Discussion started by: csharp100
2 Replies

6. Shell Programming and Scripting

Date calculation

I have to run a shell , only if file_a.txt is updated correctly before 1hr. that is, file_a.txt 2011_09_21__14:10:20 --> any format.. And the shell can be like, if ; then Run some shell update file_a.txt with (date now) fi how to do this ? (6 Replies)
Discussion started by: linuxadmin
6 Replies

7. Shell Programming and Scripting

Date time calculation

hello guys, I had been to many forums and many topics in this site as well for my question but did not get any solution. My question is how i can get y'day date with time stamp today is 20100729103819 and i am looking for output as 20100728103819. in simple words as we do in oracle sysdate-1... (4 Replies)
Discussion started by: lokaish23
4 Replies

8. Shell Programming and Scripting

Problems with date calculation

Hello all. I'm writing a script that should work with some files being sure that them were created a concrete day (0, 1, 2 or 3 days before script execution). This task should be done under Solaris and Linux hosts with different versions (Solaris 8, 9 and 10, Suse 9 and 10) so I'm trying to make... (3 Replies)
Discussion started by: nefeli
3 Replies

9. Shell Programming and Scripting

Date Calculation

Hi experts, Can you please help me in calculating the future date using unix shell scripting.. for example lets say todays date is 29-sep-2008 i wanna calculate the date after 365 days... hence the date must be 29-sep-2009.. Quick response is appreciable. thanks in... (2 Replies)
Discussion started by: subhendu81
2 Replies

10. Programming

date calculation program

Hi One of my vendor based tool is giving date in no. of days since 1900-01-01. So, I want to display in CCYYMMDD format. For ex:- Vendor based tool is giving as 38790 days since 1900-01-01 corresponding to12/sep/2006 Does anybody has the... (1 Reply)
Discussion started by: axes
1 Replies
Login or Register to Ask a Question