Created
January 26, 2015 15:47
-
-
Save 844196/f0d503484a87ad957cbd to your computer and use it in GitHub Desktop.
unix time -> real time
This file contains hidden or 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
| #!/bin/bash | |
| time="$(echo なんか | awk '{ | |
| t = int($1/60); m = t % 60; | |
| t = int(t/60); h = t % 24 + 9; | |
| printf("%02d:%02d\n",h,m); | |
| }' | |
| )" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment