convertendo o tempo unix para string time com o comando date

2

Eu li as man pages para o comando date, mas não há opção para converter o tempo unix em string time. Eu encontrei alguns sites dizendo isso:

date -d @1343715322

não há opção como @ nas páginas man e info. Alguém pode explicar isso?

    
por Majid Azimi 31.07.2012 / 08:36

2 respostas

2

Está no manual de data do GNU: link . A mesma explicação está nas páginas de informação do coreutils.

If you precede a number with ‘@’, it represents an internal time stamp as a count of seconds. The number can contain an internal decimal point (either ‘.’ or ‘,’); any excess precision not supported by the internal representation is truncated toward minus infinity. Such a number cannot be combined with any other date item, as it specifies a complete time stamp.

Internally, computer times are represented as a count of seconds since an epoch—a well-defined point of time. On GNU and POSIX systems, the epoch is 1970-01-01 00:00:00 utc, so ‘@0’ represents this time, ‘@1’ represents 1970-01-01 00:00:01 utc, and so forth. GNU and most other POSIX-compliant systems support such times as an extension to POSIX, using negative counts, so that ‘@-1’ represents 1969-12-31 23:59:59 utc.

Traditional Unix systems count seconds with 32-bit two's-complement integers and can represent times from 1901-12-13 20:45:52 through 2038-01-19 03:14:07 utc. More modern systems use 64-bit counts of seconds with nanosecond subcounts, and can represent all the times in the known lifetime of the universe to a resolution of 1 nanosecond.

On most hosts, these counts ignore the presence of leap seconds. For example, on most hosts ‘@915148799’ represents 1998-12-31 23:59:59 utc, ‘@915148800’ represents 1999-01-01 00:00:00 utc, and there is no way to represent the intervening leap second 1998-12-31 23:59:60 utc.

    
por 31.07.2012 / 08:59
4

Você normalmente não encontrará detalhes como este nas man pages.

Verifique o info date , você encontrará isso na seção "Formatos de entrada de data".

    
por 31.07.2012 / 09:02

Tags