EPOCH: mudanças entre as edições

De Wiki Clusterlab.com.br
Ir para navegação Ir para pesquisar
(Criou página com '*DMESG EPOCH CONVERTER Epoch to Date <pre> $ date -d @1361234760.790 Mon Feb 18 17:46:00 MST 2013 </pre>')
 
Sem resumo de edição
Linha 1: Linha 1:
*[[DMESG EPOCH CONVERTER|DMESG EPOCH CONVERTER]]
*[[DMESG EPOCH CONVERTER|DMESG EPOCH CONVERTER]]
Epoch to Date
Epoch to Date
<pre>
<syntaxhighlight lang=bash>
$ date -d @1361234760.790
$ date -d @1361234760.790
Mon Feb 18 17:46:00 MST 2013
Mon Feb 18 17:46:00 MST 2013
</pre>
</syntaxhighlight >
Doing nothing with a lot of effort
<syntaxhighlight lang=bash>
date -d "$(date -d @$(date +"%s"))" +"%s"
1580906588
</syntaxhighlight >

Edição das 12h45min de 5 de fevereiro de 2020

Epoch to Date

$ date -d @1361234760.790
Mon Feb 18 17:46:00 MST 2013

Doing nothing with a lot of effort

date -d "$(date -d @$(date +"%s"))" +"%s"
1580906588