ALT Linux Community general discussions
 help / color / mirror / Atom feed
* Re: [Comm] perl
  2005-06-01 12:50 [Comm] perl Anton Gorlov
@ 2005-06-01 11:52 ` Aleksander N. Gorohovski
  2005-06-01 12:54 ` Alexey I. Froloff
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 11+ messages in thread
From: Aleksander N. Gorohovski @ 2005-06-01 11:52 UTC (permalink / raw)
  To: community

On Wed, 1 Jun 2005 16:50:30 +0400, Anton Gorlov <Pnz.Stalker@mail.ru>  
wrote:

> Здравствуйте, community.
>
> Э... man что и на предмет чего... что б дату из "time" (1117632255)
> перевести в более человеческое. perl

@a=localtime;


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Comm] perl
@ 2005-06-01 12:50 Anton Gorlov
  2005-06-01 11:52 ` Aleksander N. Gorohovski
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: Anton Gorlov @ 2005-06-01 12:50 UTC (permalink / raw)
  To: community

Здравствуйте, community.

Э... man что и на предмет чего... что б дату из "time" (1117632255)
перевести в более человеческое. perl

-- 
С уважением,
 Anton                          mailto:Pnz.Stalker@mail.ru
                                     FIDO: 2:5059/37



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Comm] perl
  2005-06-01 12:50 [Comm] perl Anton Gorlov
  2005-06-01 11:52 ` Aleksander N. Gorohovski
@ 2005-06-01 12:54 ` Alexey I. Froloff
  2005-06-01 14:07   ` Re[2]: " Anton Gorlov
  2005-06-01 13:22 ` Alexey Morsov
  2005-06-01 14:03 ` Afanasov Dmitry
  3 siblings, 1 reply; 11+ messages in thread
From: Alexey I. Froloff @ 2005-06-01 12:54 UTC (permalink / raw)
  To: ALT Linux Community

[-- Attachment #1: Type: text/plain, Size: 546 bytes --]

* Anton Gorlov <Pnz.Stalker@> [050601 16:51]:
> Э... man что и на предмет чего... что б дату из "time" (1117632255)
> перевести в более человеческое. perl
info date, examples, последний пример.

-- 
Regards, Sir Raorn.
-------------------
>Вроде reiser4 полностью журналируемый, не только структура файловой
>системы, но и операции с содержимым файлов. [...]
Пожалуйста, все "вроде" выбросьте и говорите только исходя из собственного
опыта. Файловые системы не терпят пересказа и сослагательного наклонения.
		-- ab in devel-kernel@

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Comm] perl
  2005-06-01 12:50 [Comm] perl Anton Gorlov
  2005-06-01 11:52 ` Aleksander N. Gorohovski
  2005-06-01 12:54 ` Alexey I. Froloff
@ 2005-06-01 13:22 ` Alexey Morsov
  2005-06-02  4:26   ` Aleksander N. Gorohovski
  2005-06-01 14:03 ` Afanasov Dmitry
  3 siblings, 1 reply; 11+ messages in thread
From: Alexey Morsov @ 2005-06-01 13:22 UTC (permalink / raw)
  To: community


Anton Gorlov wrote:
> Здравствуйте, community.
> 
> Э... man что и на предмет чего... что б дату из "time" (1117632255)
> перевести в более человеческое. perl

($sec, $min, $hour, $day, $mon, $year, $wday, $yday, $isdst)
       = localtime($_[0]);

    if (length($day) == 1) { $day ='0'.$day; }
    if (length($mon) == 1) { $mon ='0'.++$mon; }
    if (length($min) == 1) { $min ='0'.$min; }
    if (length($sec) == 1) { $sec ='0'.$sec; }
    else { $mon++; }

    $year += 1900;


-- 
Всего наилучшего,
Системный Администратор ЗАО "ИК "РИКОМ-ТРАСТ"
Алексей Морсов
ICQ: 196766290
Jabber: Samurai@jabber.pibhe.com
http://www.ricom.ru
http://www.fondmarket.ru


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Comm] perl
  2005-06-01 12:50 [Comm] perl Anton Gorlov
                   ` (2 preceding siblings ...)
  2005-06-01 13:22 ` Alexey Morsov
@ 2005-06-01 14:03 ` Afanasov Dmitry
  3 siblings, 0 replies; 11+ messages in thread
From: Afanasov Dmitry @ 2005-06-01 14:03 UTC (permalink / raw)
  To: community

Anton Gorlov wrote:
> Здравствуйте, community.
> 
> Э... man что и на предмет чего... что б дату из "time" (1117632255)
> перевести в более человеческое. perl

use POSIX qw(strftime);
print strftime "%T %H", localtime time;

-- 
  С уважением,
  Афанасов Дмитрий


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re[2]: [Comm] perl
  2005-06-01 12:54 ` Alexey I. Froloff
@ 2005-06-01 14:07   ` Anton Gorlov
  2005-06-01 14:13     ` Alexey I. Froloff
  2005-06-01 14:18     ` Alex Gorbachenko
  0 siblings, 2 replies; 11+ messages in thread
From: Anton Gorlov @ 2005-06-01 14:07 UTC (permalink / raw)
  To: community

Здравствуйте, Alexey.

Вы писали 1 июня 2005 г., 16:54:11:

> * Anton Gorlov <Pnz.Stalker@> [050601 16:51]:
>> Э... man что и на предмет чего... что б дату из "time" (1117632255)
>> перевести в более человеческое. perl
> info date, examples, последний пример.


Хм. и как это в перл засунуть?

-- 
С уважением,
 Anton                          mailto:Pnz.Stalker@mail.ru
                                     FIDO: 2:5059/37



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Comm] perl
  2005-06-01 14:07   ` Re[2]: " Anton Gorlov
@ 2005-06-01 14:13     ` Alexey I. Froloff
  2005-06-01 14:18     ` Alex Gorbachenko
  1 sibling, 0 replies; 11+ messages in thread
From: Alexey I. Froloff @ 2005-06-01 14:13 UTC (permalink / raw)
  To: ALT Linux Community

[-- Attachment #1: Type: text/plain, Size: 429 bytes --]

* Anton Gorlov <Pnz.Stalker@> [050601 18:08]:
> >> Э... man что и на предмет чего... что б дату из "time" (1117632255)
> >> перевести в более человеческое. perl
> > info date, examples, последний пример.
> Хм. и как это в перл засунуть?
Пардон, просто не так понял ;-)

-- 
Regards, Sir Raorn.
-------------------
> Subject: Re: [devel] [JT]^[JT] О судьбах... в том числе и питона.
[JT]^[JT] == 0
		-- ldv in devel@

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Comm] perl
  2005-06-01 14:07   ` Re[2]: " Anton Gorlov
  2005-06-01 14:13     ` Alexey I. Froloff
@ 2005-06-01 14:18     ` Alex Gorbachenko
  2005-06-01 14:59       ` Alex Gorbachenko
  1 sibling, 1 reply; 11+ messages in thread
From: Alex Gorbachenko @ 2005-06-01 14:18 UTC (permalink / raw)
  To: community

[-- Attachment #1: Type: text/plain, Size: 163 bytes --]

On Wed, 1 Jun 2005 18:07:10 +0400
Anton wrote:

> Хм. и как это в перл засунуть?

perldoc -f system

-- 
np: Iron Maiden - The Wicker Man (Album Version)

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Comm] perl
  2005-06-01 14:18     ` Alex Gorbachenko
@ 2005-06-01 14:59       ` Alex Gorbachenko
  0 siblings, 0 replies; 11+ messages in thread
From: Alex Gorbachenko @ 2005-06-01 14:59 UTC (permalink / raw)
  To: community

[-- Attachment #1: Type: text/plain, Size: 396 bytes --]

On Wed, 1 Jun 2005 18:18:03 +0400
Alex wrote:

> > Хм. и как это в перл засунуть?

> perldoc -f system

либо, если вы хотите "чистый" perl, что-то типа:

$timestamp=1117637418
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime
($timestamp); 
$year=$year+1900; 
print "$hour\:$min\:$sec $mday \.$mon\.$year\n";

-- 
np: Iron Maiden - The Wicker Man (Album Version)

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Comm] perl
  2005-06-01 13:22 ` Alexey Morsov
@ 2005-06-02  4:26   ` Aleksander N. Gorohovski
  2005-06-02  7:02     ` Alexey Morsov
  0 siblings, 1 reply; 11+ messages in thread
From: Aleksander N. Gorohovski @ 2005-06-02  4:26 UTC (permalink / raw)
  To: community

On Wed, 01 Jun 2005 17:22:04 +0400, Alexey Morsov <samurai@ricom.ru> wrote:

>
> Anton Gorlov wrote:
>> Здравствуйте, community.
>>
>> Э... man что и на предмет чего... что б дату из "time" (1117632255)
>> перевести в более человеческое. perl
>
> ($sec, $min, $hour, $day, $mon, $year, $wday, $yday, $isdst)
>        = localtime($_[0]);
>
>     if (length($day) == 1) { $day ='0'.$day; }
>     if (length($mon) == 1) { $mon ='0'.++$mon; }
>     if (length($min) == 1) { $min ='0'.$min; }
>     if (length($sec) == 1) { $sec ='0'.$sec; }
>     else { $mon++; }

Sorry,

$mon++;
for($day,$mon,$min,$sec){ $_="0$_" if length($_) == 1 }

:-)

>
>     $year += 1900;


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [Comm] perl
  2005-06-02  4:26   ` Aleksander N. Gorohovski
@ 2005-06-02  7:02     ` Alexey Morsov
  0 siblings, 0 replies; 11+ messages in thread
From: Alexey Morsov @ 2005-06-02  7:02 UTC (permalink / raw)
  To: community


Aleksander N. Gorohovski wrote:
>>($sec, $min, $hour, $day, $mon, $year, $wday, $yday, $isdst)
>>       = localtime($_[0]);
>>
>>    if (length($day) == 1) { $day ='0'.$day; }
>>    if (length($mon) == 1) { $mon ='0'.++$mon; }
>>    if (length($min) == 1) { $min ='0'.$min; }
>>    if (length($sec) == 1) { $sec ='0'.$sec; }
>>    else { $mon++; }
> 
> 
> Sorry,
> 
> $mon++;
> for($day,$mon,$min,$sec){ $_="0$_" if length($_) == 1 }
ну как там было... there more then one way to do the same thing  или как 
то так ;)
Писалось в свое время в попыхах так что - что выросло то выросло.

-- 
Всего наилучшего,
Системный Администратор ЗАО "ИК "РИКОМ-ТРАСТ"
Алексей Морсов
ICQ: 196766290
Jabber: Samurai@jabber.pibhe.com
http://www.ricom.ru
http://www.fondmarket.ru


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2005-06-02  7:02 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-06-01 12:50 [Comm] perl Anton Gorlov
2005-06-01 11:52 ` Aleksander N. Gorohovski
2005-06-01 12:54 ` Alexey I. Froloff
2005-06-01 14:07   ` Re[2]: " Anton Gorlov
2005-06-01 14:13     ` Alexey I. Froloff
2005-06-01 14:18     ` Alex Gorbachenko
2005-06-01 14:59       ` Alex Gorbachenko
2005-06-01 13:22 ` Alexey Morsov
2005-06-02  4:26   ` Aleksander N. Gorohovski
2005-06-02  7:02     ` Alexey Morsov
2005-06-01 14:03 ` Afanasov Dmitry

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git