#compdef fdasd

function _fdasd {

	_arguments -C -A "*" \
		"--auto[Create a single partition spanning the entire disk]" \
		"--config[Create partitions(s) based on content of FILE]" \
		"--keep_volser[Do not change the current volume serial]" \
		"--label[Set the volume serial to VOLSER]" \
		"--check_host_count[Check if device is in use by other hosts]" \
		"--force[Force fdasd to work on non DASD devices with assumed TYPE (3390, 3380, or 9345) and blocksize SIZE]" \
		"--volser[Print volume serial]" \
		"--table[Print partition table]" \
		"--verbose[Provide more verbose output]" \
		"--silent[Suppress messages]" \
		"--help[Print this help, then exit]" \
		"--version[Print version information, then exit]" \
		"*:files:_files"
}
