List directory contents of an ISO image

Have you every needed to list the contents of an ISO image without mounting it first? Using the isoinfo utility we can do just that.

From the isoinfo(1) man page:

isodump is a crude utility to interactively display the contents of iso9660 images in order to verify directory integrity.

Listing like "ls -lR"

isoinfo -l -i /path/to/file.iso

Listing like "find . -print"

isoinfo -f -i /path/to/file.iso