Skip to content

Instantly share code, notes, and snippets.

@techie2000
Last active October 10, 2020 02:26
Show Gist options
  • Save techie2000/ba0596a5ba9f19008825e92f9de3c4d6 to your computer and use it in GitHub Desktop.
Save techie2000/ba0596a5ba9f19008825e92f9de3c4d6 to your computer and use it in GitHub Desktop.
When was my 'nix box last rebooted?
awk '/btime/ {print $2}' /proc/stat | xargs -IUNIX_TIMESTAMP date --date @UNIX_TIMESTAMP
@techie2000
Copy link
Author

Could use awk '/btime/ {command="date --date @" $2;system(command)}' /proc/stat

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment