Windows 中的脚本环境设置
当我开始一天的编程(使用 Windows 7)时,我想打开并准备好一堆窗口:
- 运行 DevNull smtp java 服务器
- 在我的代码目录中使用命令提示符,使用startup.bat在 tomcat\bin 目录中 命令提示符在 rmdir /S /Q'ing 工作和测试 webapp 目录后运行
- IntelliJ
- 在 tomcat 加载后运行(只要有一个计时器即可),
- 在 tomcat 加载后加载我的 web 应用程序的 Firefox,加载我的 web 应用程序的 Chrome
这些都是非常核心的......然后就我需要打开的其他应用程序而言,这取决于我正在做什么。
那么,我如何编写一个可以双击并准备好以上所有内容的脚本,这样每天可以节省我几分钟的时间,并且在开始时不那么烦人呢?我了解 .bat 文件,使用 .bat 文件可以轻松执行上述操作吗?有没有一个不错的应用程序可以轻松地为我完成上述操作?
When I start my day programming (using windows 7), I have a bunch of windows I'd like open and ready:
- command prompt in my code directory running the DevNull smtp java server
- command prompt in the tomcat\bin directory with startup.bat running after rmdir /S /Q'ing work and test webapp directories
- IntelliJ running
- after tomcat loads (fine with just having a timer), Firefox with my webapp loaded
- after tomcat loads, Chrome with my webapp loaded
Those are pretty core... then it depends on what exactly I'm working on as far as other apps I need open.
So how do I write a script I can double click on and have all the above ready for me, saving me a couple minutes each day and a little less annoying getting started? I know about .bat files, is it easy to do the above with a .bat file? Is there a nice app that can easily do the above for me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将所有这些内容放入一个 bat 文件中非常简单,如下所示:
It is pretty straight-forward to put all of that in a bat file, something like this:
您可以将所有这些内容放入批处理文件中,并使用 Windows Server 2003 资源工具包工具中的
sleep
命令。You can put all that into a batch file, and use the
sleep
command from the Windows Server 2003 Resource Kit Tools.