Files
schmeeve-toolz/mountvol
2026-05-10 12:53:30 -07:00

7 lines
193 B
Bash
Executable File

#!/bin/sh
export PATH=$PATH:/usr/bin/local
echo "Looking for $1"
_MYDISK=`diskutil list | grep "$1" | sed 's/ GB/GB/g' | awk '{print $6}'`
echo "Mounting $_MYDISK"
diskutil mount /dev/$_MYDISK