Install

brew install imagemagick

Convert

convert hoge.webp hoge.png

Convert images which title has serial number

for i in {1..20}
do
  X="0${i}"
  NAME="0${X: -2}"
  convert $NAME.webp $NAME.png
done