使用AppleScript重新启动Django开发服务器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用AppleScript重新启动Django开发服务器相关的知识,希望对你有一定的参考价值。

  1. property applicationName : "Terminal"
  2. tell application applicationName
  3. activate
  4. tell application "System Events"
  5. tell front window of process applicationName
  6. try
  7. key code 8 using control down
  8. keystroke "python manage.py runserver" & return
  9. on error theError
  10. display dialog ("Sorry, an error occured:" & theError) buttons "OK" default button "OK" with icon stop
  11. end try
  12. end tell
  13. end tell
  14. tell application "TextMate"
  15. activate
  16. end tell
  17. end tell
  18.  

以上是关于使用AppleScript重新启动Django开发服务器的主要内容,如果未能解决你的问题,请参考以下文章

使用AppleScript重新启动Django开发服务器

使用AppleScript重新启动Django开发服务器

使用AppleScript重新启动Django开发服务器

使用AppleScript重新启动Django开发服务器

使用AppleScript重新启动Django开发服务器

使用AppleScript重新启动Django开发服务器