Skip to content

Instantly share code, notes, and snippets.

@geudrik
Last active August 29, 2015 14:14
Show Gist options
  • Save geudrik/870c8588479bce4d1578 to your computer and use it in GitHub Desktop.
Save geudrik/870c8588479bce4d1578 to your computer and use it in GitHub Desktop.
Show Disk Serial Numbers Next to Disk Letters (sde serialnumber)
ls -l /dev/disk/by-id |gawk 'match($11, /[a-z]{3}$/) && match($9, /^ata-/) { gsub("../", ""); print $11,"\t",$9 }' |sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment