Created
February 15, 2010 17:12
-
-
Save dotemacs/304799 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!/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