playing time of all my mp3’s

on

If I play all my mp3’s from this directory how many minutes will that play:

for f in *.mp3; do l=$(mp3info -p "%S" "${f}"); t=$(expr ${t} + ${l}); done; echo $(expr ${t} / 60) minuten; t=0;