Skip to content

Instantly share code, notes, and snippets.

@romanmah
Created February 1, 2015 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save romanmah/d877bb030b9822753378 to your computer and use it in GitHub Desktop.
Save romanmah/d877bb030b9822753378 to your computer and use it in GitHub Desktop.
Convert kernel time to utc
#!/bin/env bash
ut=`cut -d' ' -f1 </proc/uptime`
ts=`date +%s`
date -d"70-1-1 + $ts sec - $ut sec + $1 sec" +"%F %T"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment