如何创建启动 Cygwin 并跟踪特定文件的桌面快捷方式?
我想要一个桌面快捷方式打开 cygwin,以便我可以跟踪日志文件。
目前我手动执行以下步骤:
- 启动 cygwin
- cd dev/服务器/日志
- 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:
- Start cygwin
- cd dev/server/logs
- tail -f error.log
I would like to automate the three steps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建以下目标的 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.
从 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.