unziping to current time stamp

Basically when ever unzipping the .zip file , what ever the file exist in the .zip file with the time stamp, that is the same time stamp after unzip.
But if i need the current time stamp to the unzipped file(time stamp whenever unzip process occurs )
any helpful option in unzip command ???

Thanks..

i went through the man page for gzip but i am unable to find anything that can be useful for u. but u can write a script that can rename the file after unzippin with the current timestamp.
btw u can write a script to capture the current datetime stamp and change it with the original datetime stamp.

write a script which should 'touch' all the files after unzipping.

what is your decompress command? If it's a tarred|gzipped file, you would want to ignore permissions, for example...

[root@ temp]# unzip -l no.zip
Archive:  no.zip
  Length     Date   Time    Name
 --------    ----   ----    ----
       91  06-02-10 14:34   no1
       30  06-01-10 13:33   no2
       30  06-01-10 13:34   no3
 --------                   -------
      151                   3 files
[root@ temp]# unzip no.zip
Archive:  no.zip
  inflating: no1
  inflating: no2
  inflating: no3
[root@ temp]# ls -l no1 no2 no3
-rw-r--r-- 1 root root 91 Jun  2 14:34 no1
-rw-r--r-- 1 root root 30 Jun  1 13:33 no2
-rw-r--r-- 1 root root 30 Jun  1 13:34 no3

Here after extraction of .zip file, i need the file should be in current time stamp , rather the old time stamp.