All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hardware.WinStorageSpaces.logicalDiskCollect.awk Maven / Gradle / Ivy

The newest version!
BEGIN {
	FS = ";"
	alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
}

{
	if ($2 > 64 && $2 < 91) {
		deviceId = substr(alphabet, int($2) - 64, 1) ":"
	} else {
		deviceId = $1
	}
	print "MSHW;" deviceId ";" $3 ";" $4 ";" $5
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy