Create TOC

2010년 9월 2일

Apple script로 특정 명령 실행하기

VirtualBox에서는 VBoxManage 라는 command 도구를 제공하는데, 특정 가상머신을 바로 실행 시킬 수 있다.

Apple script를 이용해서 내가 원하는 가상 머신을 바로 실행 시키는 코드를 작성해보았다.

tell me
	activate
	do shell script "VBoxManage startvm \"Debian Linux\""
end tell