Files
shrink_lv/echo.sh
2024-02-05 16:28:05 -05:00

17 lines
219 B
Bash
Executable File

#!/bin/bash
start=$(/usr/bin/date +%s)
sleep 3
end=$(/usr/bin/date +%s)
echo "${end}-${start}"
echo "$(expr $end - $start)"
echo "$((end-start))"
echo "Failed to extend boot partition: ($((end-start)) seconds)"