Skip to content

Instantly share code, notes, and snippets.

@dotemacs
Created February 15, 2010 17:12
Show Gist options
  • Save dotemacs/304799 to your computer and use it in GitHub Desktop.
Save dotemacs/304799 to your computer and use it in GitHub Desktop.
!/usr/bin/env ruby
# convert unix time stamps to 'human' time
# by Aleksandar Simic
# 4 August 2009
if ARGV.length == 0
puts
puts 'usage: u2h unix-time-stamp'
puts
exit 1
else
puts Time.at(ARGV[0].to_i)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment