I want to add 2 different time in shell script but i am not sure how to do it The scenario is to get the build start time , build end time and build execution time of a jenkins build. i can get the build start time and build execution time so to get the build end time i will have to add build start time and execution time. since this is not a normal addition i am not sure how to add these two any help on this
build_start=11:17 AM
build_duration=07m:52sec
build_end= $build_start + $build_duration