批处理文件中控制台窗口底部的永久行
只是想知道是否有人知道在运行批处理文件时是否可以在 cmd 提示窗口的底部有一个永久的文本行?所以它是浮动的,如果屏幕上有很多文本流动,并且 cmd 提示符开始滚动,那么该行文本仍然在底部。
Just wondering if anyone knew if it was possible to have a permament line of text at the bottom of a cmd prompt window when running a batch file? So it floats, and if there is a lot of text flowing on the screen, and the cmd prompt starts to scroll, that line of text is still there at the bottom.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
并非没有外部程序。您的输出选项仅限于:
不编写自己的程序(或求助于其他人)您无法对控制台输出执行任何其他操作。
当需要一行或其他内容来显示状态而输出的主要部分滚动时,我通常使用窗口标题;您可以使用
title
设置它。Not without external programs. Your output options are limited to:
Without writing your own programs (or resorting to others) you can't do anything else with the console output.
When needing a line or something to display status while the main portion of the output scrolls away I've usually been using the window title for that; you can set it with
title
.