-
@ e33io
2025-05-15 18:06:14i'm trying to get days since `2008-11-30 01:00:00` in zsh.. ..the command below works fine in bash.. ..what do i need to change for zsh ? echo $(( ($(date +%s) - $(date +%s -ud '2008-11-30 01:00:00')) / 3600 / 24 )) #asknostr