|
|
|
|
|
by chriswarbo
1914 days ago
|
|
Duration and start time can both be useful, and the former can be calculated from the latter as needed. Plus it's easier to implement (stateless) and has consistent alignment (always 10 digits). BTW here's the function I use: ```
showTime() {
if [[ "$?" -eq 0 ]]
then
TIMECOLOR='\e[92m'
else
TIMECOLOR='\e[91m'
fi
echo -e "$TIMECOLOR$(date '+%s')\e[0m"
}
``` |
|