Improve output

This commit is contained in:
Philippe Caseiro 2022-03-24 14:04:07 +01:00
parent c563ba96f0
commit 5a00aee3f2
1 changed files with 5 additions and 4 deletions

5
badgy
View File

@ -68,10 +68,11 @@ getCapitalTime()
st=$(date --date="${starts}" +'%s')
ends=$(echo ${cl} | jq -rc ".end")
echo
echo " Start: $(date --date=${starts} +'%A %d %B %Y : %H:%M')"
echo " $(date --date=${starts} +"%A %d %B %Y:")"
echo " Start: $(date --date=${starts} +'%H:%M')"
if [ "${ends}" != "null" ];then
ed=$(date --date="${ends}" +'%s')
echo " End: $(date --date=${ends} +'%A %d %B %Y : %H:%M')"
echo " End: $(date --date=${ends} +'%H:%M')"
else
ed=$(date +'%s')
echo " End: running"