Skip to content

Instantly share code, notes, and snippets.

@844196
Created January 26, 2015 15:47
Show Gist options
  • Save 844196/f0d503484a87ad957cbd to your computer and use it in GitHub Desktop.
Save 844196/f0d503484a87ad957cbd to your computer and use it in GitHub Desktop.
unix time -> real time
#!/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