Skip to content

Instantly share code, notes, and snippets.

@yuki777
Last active October 28, 2016 05:23
Show Gist options
  • Save yuki777/2e44e73680d02370110de0969f782740 to your computer and use it in GitHub Desktop.
Save yuki777/2e44e73680d02370110de0969f782740 to your computer and use it in GitHub Desktop.
Print Machine ID
#!/usr/bin/env bash
case "${OSTYPE}" in
darwin*)
sysctl -n kern.uuid
;;
freebsd*)
sysctl -n kern.hostuuid
;;
linux*)
cat /var/lib/dbus/machine-id
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment