Skip to content

Instantly share code, notes, and snippets.

@unicornrainbow
Created January 18, 2014 07:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unicornrainbow/8487457 to your computer and use it in GitHub Desktop.
Save unicornrainbow/8487457 to your computer and use it in GitHub Desktop.
Unmount a disk by name on OSX.
#! /usr/bin/env bash
disk=$(diskutil list | grep <Disk Name> | awk '{ print $6}')
diskutil unmount "/dev/$disk"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment