#compdef dasdview

function _dasdview {

	_arguments -C -A "*" \
		"--begin[Specify start of dump in kilobytes (suffix k), megabytes (m), blocks (b), tracks (t), or cylinders (c)]" \
		"--size[Specify size of dump in kilobytes (suffix k), megabytes (m), blocks (b), tracks (t), or cylinders (c)]" \
		"--characteristic[Print the characteristics of a device]" \
		"--info[Print general DASD information and geometry]" \
		"--volser[Print the volume serial number]" \
		"--label[Print information about the volume label]" \
		"--vtoc[Print the table of content (VTOC)]" \
		"--extended[Print extended DASD information]" \
		"--help[Print this help, then exit]" \
		"--version[Print version information, then exit]" \
		"*:files:_files"
}
