I am writing a shell script wherein I am doing
log=/var/tmp/git_prod_test_pack/log.out
Time_clone=`(/usr/bin/time -f'%e' git clone --quiet ssh://id@xxxxxxxxxx) 2>&1 >> $log`
echo $Time_clone
It is giving output as Total 104 (delta 0), reused 104 (delta 0) 0.17
How can I totally suppress this output and get only 0.17 ?