我正在使用 applescript 来安装我的硬盘。
目前我正在使用:
执行 shell 脚本“diskutil mountDisk diskutil list | grep \“Harddrive\” | grep -o 'disk[0-9]*'”
现在我想做同样的事情,但使用加密驱动器。
我如何在此脚本中填写密码?
答案1
property thePassword : "•••"
do shell script ("/bin/echo -n " & quoted form of thePassword & " | /usr/bin/hdiutil attach -stdinpass /Volumes/ExternalDisk/ImageName.dmg")