Extract century from date (Solaris platform)


 
Thread Tools Search this Thread
Operating Systems Solaris Extract century from date (Solaris platform)
# 1  
Old 02-09-2006
Extract century from date (Solaris platform)

Hi ,

I want the date in the following format(Solaris platform)
CCYYMMDD:HHSS
I am facing problems in extracting century from the date.
I tried the following options.
`date '+%cc%y%m%d:%H%S`
but the Output is (Thu Feb 09 02:28:21 2006c060209:0221).
I think this problem is specific to solaris platform.
I kindly request your help in resolving this issue.

Thanks & Regs
Anand
# 2  
Old 02-09-2006
Try:
$ date '+%Y%m%d:%H%S'
20060209:1252

Note that I have a single quote before and after the argument to date. You only have a single quote before the argument. You're getting away with that because the whole date command is enclosed in back quotes. The result you get with your date command is correct and HP-UX gives the same result.

Using HHSS is really odd. Most of us would stick the minutes in there too. But I guess it's your script.
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Extract week start,end date from given date in PERL

Hi All, what i want to do in perl is i should give the date at run time .Suppose date given is 23/12/2011(mm/dd/yyyy) the perl script shold find week start date, week end date, previous week start date,end date,next week start date, end date. In this case week start date will be-:12/19/2011... (2 Replies)
Discussion started by: parthmittal2007
2 Replies

2. UNIX for Dummies Questions & Answers

How to display century in UNIX.

Hi, I wanted to display Century in Unix. I tried with date +"%C" Which is displaying Mon Aug 29 12:54:54 BST 2011. (Used capital C). and when used date +"%c" Displaying Mon Aug 29 12:54:33 2011. (used Small c) But i want century (21) to get displayed. Please let me know how can i do... (5 Replies)
Discussion started by: nithyasreerupa
5 Replies

3. Solaris

ZFS on solaris 10 with x86 platform

HI , I required brief about the zfs creation on solaris 10 with x86 platform. I had done with sparc system. Is it same or different as Sparc. (3 Replies)
Discussion started by: sunray
3 Replies

4. Solaris

best vm platform for x86 solaris

Anyone recommend the best VM platform to run x86 solaris on my dell laptop? A free platform.. (2 Replies)
Discussion started by: BG_JrAdmin
2 Replies

5. Solaris

Need J2SDK 1.4 for Solaris Sparc 8 platform

Hi, I need j2sdk 1.4 for solaris sparc 8 platform. I searched it over sun java site but not able to find that for the particular soalris platform. I was able to see j2sdk 1.3 , but I need j2sdk 1.4 for solaris. Can any body send me some link where I could download it. Plz help me for this ,... (1 Reply)
Discussion started by: aarora_98
1 Replies

6. UNIX for Dummies Questions & Answers

How HDD under Solaris on Intel platform

On my Intel PC I have 4GB HDD on which I installed Solaris. I also installed 30GB HDD but the bios does not recognize anything beyond 8GB and that is what Solaris picks up. Under WinNT is an utility that allows me to access and format the full capacity of this 30GB HDD no matter what the bios... (4 Replies)
Discussion started by: softarch
4 Replies
Login or Register to Ask a Question