Show number of days between two dates in bash using busybox binary

$ let DIFF=($(date +%s -d now)-$(date +%s -d "$(busybox date -D "%d%m%Y" -d "10032022")"))/86400
$ echo $DIFF
193
BusyBox is a multi-call binary that combines many common Unix utilities into a single executable