remove old code

This commit is contained in:
Shihaam Abdul Rahman 2022-09-09 12:26:17 +05:00
parent b9b1d438ea
commit 1dd2c01a1d
Signed by: shihaam
GPG Key ID: 3B007D22E5584980

View File

@ -7,13 +7,6 @@ DAY_OF_YEAR=$(($(date -d "@$(date +%s)" +%j) - 1))
rm $OUTPUT > /dev/null
#human() {
# if (( $(( $1 / 60 )) > 9 )) ; then
# echo "$(( $1 / 60 )):$(( $1 % 60 ))"
# else
# echo "0$(( $1 / 60 )):$(( $1 % 60 ))"
# fi
#}
human() {
HOUR="$(( $1 / 60 ))"
if (( $(( $1 / 60 )) < 10 )) ; then