How to split multi-page TIFF using Linux shell and convert to PNG

convert mytiff.tiff -format png -scene 1 out%d.png

This will produce out1.pngout2.png, …

Optionally, you can also rotate the files:

convert mytiff.tiff -rotate 90 -format png -scene 1 out%d.png