Windows 中的脚本环境设置

发布于 2024-11-02 02:46:45 字数 488 浏览 1 评论 0原文

当我开始一天的编程(使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

很酷又爱笑 2024-11-09 02:46:45

将所有这些内容放入一个 bat 文件中非常简单,如下所示:

@echo off

rmdir /S /Q testdir
rmdir /S /Q workdir

start cmd /K c:\foo\bar.bat
start cmd /K c:\foo\bas.bat

start firefox.exe "http://www.stackoverflow.com/"

It is pretty straight-forward to put all of that in a bat file, something like this:

@echo off

rmdir /S /Q testdir
rmdir /S /Q workdir

start cmd /K c:\foo\bar.bat
start cmd /K c:\foo\bas.bat

start firefox.exe "http://www.stackoverflow.com/"
德意的啸 2024-11-09 02:46:45

您可以将所有这些内容放入批处理文件中,并使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文