codice:
rename 's/^/0-/' *.html
o se preferisci
codice:
for i in *.html
do
    mv "$i" "0-$i"
done