python's datetime.timedelta for bash -


is there in bash similar construction in python:

start_time = time.time() target() print datetime.timedelta( seconds= int(time.time() - start_time) ) 

?

i'm looking wrapper datetime.timedelta.

i mean, easy construction: one/two line, give same result, days/hours:minutes:seconds

running below time execution of script wish time.

time script 

for example:

time python my_script.py 

will time how long script runs, independant of python itself. time ls -la ., time cat a_long_file, time du -h etc...

source


Comments

Popular posts from this blog

html - Cut text on left side inside button while centering -

plugins - CodeIgniter support on netbeans 8.0 -

php - Selecting items from MySQL for a status update feed efficiently while accounting for possible spam -