- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- check date last week
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2006 08:19 PM
12-27-2006 08:19 PM
check date last week
Every monday i need to send database information that apply to the last 7 days. To be able to put this in a script i need to get the date value for 7 days ago.
Any one knows howto fix?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2006 08:40 PM
12-27-2006 08:40 PM
Re: check date last week
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2006 08:51 PM
12-27-2006 08:51 PM
Re: check date last week
Make sure the cronjob runs every week, so next week you can just grab the date entry that was written last week...
Cheers,
Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2006 08:55 PM
12-27-2006 08:55 PM
Re: check date last week
you can:
See "A. Clay Stephenson's Date Hammer" at bottom of page http://mirrors.develooper.com/hpux/
or
As you are running Monday to Monday, write the current date (for example: Monday 25/12/2006) into a file. Next Monday (1/1/2007) you read the earlier file and you have your date ! Once you completed your processing you overwrite the original file with the new date (i.e. 1/1/2007)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2006 09:28 PM
12-27-2006 09:28 PM
Re: check date last week
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2006 11:13 PM
12-27-2006 11:13 PM
Re: check date last week
//Tomas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2006 12:01 AM
12-28-2006 12:01 AM
Re: check date last week
it is customary to reward the efforts of the people suggesting answers to your questions with "points".
Could you please complete the thread by awarding points to helpful answers and summarising the solution for you.
This will help resolution of similar problems in the future.
Please read:
http://forums1.itrc.hp.com/service/forums/helptips.do?#33 on how to reward any useful answers given to your questions.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2006 01:08 AM
12-29-2006 01:08 AM
Re: check date last week
Sorry to see that many have forgotten the Julian date format...
This is really helpful and the basis of Clay's - Caljd scripts.
Date +%j
See: man date
/Tor-Arne
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2006 04:38 AM
12-29-2006 04:38 AM
Re: check date last week
To find 7 days before today in MM/DD/YYYY format:
D7BEFORE=$(caljd.sh -S "/" $(caljd.sh -p 7))
echo "7 days ago was ${D7BEFORE}"
Unlike the date %j output, this will work across year boundaries and leap years.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2006 04:48 AM
12-29-2006 04:48 AM
Re: check date last week
For today (Dec 29, 2006):
# date +%j
363
It's the 363rd day of the year.
# caljd.sh
2454099
It's the 2,454,099 day since the count started.