使用AppleScript重新启动Django开发服务器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用AppleScript重新启动Django开发服务器相关的知识,希望对你有一定的参考价值。
property applicationName : "Terminal" tell application applicationName activate tell application "System Events" tell front window of process applicationName try key code 8 using control down keystroke "python manage.py runserver" & return on error theError display dialog ("Sorry, an error occured:" & theError) buttons "OK" default button "OK" with icon stop end try end tell end tell tell application "TextMate" activate end tell end tell
以上是关于使用AppleScript重新启动Django开发服务器的主要内容,如果未能解决你的问题,请参考以下文章