如何创建启动 Cygwin 并跟踪特定文件的桌面快捷方式?

发布于 2024-11-19 20:16:49 字数 197 浏览 3 评论 0原文

我想要一个桌面快捷方式打开 cygwin,以便我可以跟踪日志文件。

目前我手动执行以下步骤:

  1. 启动 cygwin
  2. cd dev/服务器/日志
  3. tail -f 错误.log

我想自动执行这三个步骤。

I would like to have a desktop shortcut open cygwin so that I can tail a log file.

Currently I perform the following steps manually:

  1. Start cygwin
  2. cd dev/server/logs
  3. tail -f error.log

I would like to automate the three steps.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

2024-11-26 20:16:49

您可以创建以下目标的 Windows 快捷方式...

C:\cygwin\bin\tail.exe -f "C:\Path\to\the\error.log"

...假设这就是你的尾部可执行文件所在的位置。在 Cygwin shell 中执行 which tail 应该可以确认这一点。

这应该在 cmd 窗口中运行二进制文件。执行 Ctrl-C 来停止它。

编辑:哦,我忘记了一件事......这可能需要您的 PATH 环境变量中的“C:\cygwin\bin”。

You could create a Windows shortcut to the following target...

C:\cygwin\bin\tail.exe -f "C:\Path\to\the\error.log"

...assuming that's where your tail executable is. Doing which tail in a Cygwin shell should confirm that.

That should run the binary in a cmd window. Do Ctrl-C to stop it.

EDIT: Oh, one thing I forgot... This might require "C:\cygwin\bin" in your PATH env variable.

┈┾☆殇 2024-11-26 20:16:49

从 cygwin shell 执行 tail 操作是否有特定原因?
如果没有,您可以使用 tail for windows 并创建一个指向 < code>tail.exe -f error.log

如果由于某种原因,您需要 cygwin shell,请尝试 Andy 的方法,这应该适合您。

Is there a specific reason to perform the tail operation from cygwin shell?
If not, you can use the tail for windows and create a shortcut that will point to tail.exe -f error.log

If for some reason, you require cygwin shell, try Andy's approach, that should work for you.

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