懒人装完软件,从来不卸载加载盘,最后罗列一大堆,苦逼的一个个eject,早知现在何必当初呢?不过只要有命令,就能让你继续犯懒:
find /Volumes -maxdepth 1 -not -user root -print0 | xargs -0 diskutil eject
另外,卸载网络盘也有命令:
find /Volumes -maxdepth 1 -not -user root -print0 | xargs -0 umount
懒人装完软件,从来不卸载加载盘,最后罗列一大堆,苦逼的一个个eject,早知现在何必当初呢?不过只要有命令,就能让你继续犯懒:
find /Volumes -maxdepth 1 -not -user root -print0 | xargs -0 diskutil eject
另外,卸载网络盘也有命令:
find /Volumes -maxdepth 1 -not -user root -print0 | xargs -0 umount