Guest User

Untitled

a guest
Dec 15th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # Minutes since Epoch until now:
  4. ((minutes=$(date +%s)/60))
  5.  
  6. # Minutes since Epoch until Jan 1 2011:
  7. ((minutes=$(date -d 'Jan 1 2011' +%s)/60))
  8.  
  9. python -c "import time; print time.time() / 60"
Add Comment
Please, Sign In to add comment