如何使批处理文件在运行时从顶部开始?

发布于 2024-11-08 23:55:29 字数 102 浏览 0 评论 0原文

我创建了一个批处理文件,但是当我运行它并加载它时,它会下降到用户输入的位置,从而切断我的程序的一部分。

有没有办法让它从顶部开始并让用户必须手动向下滚动才能查看他输入的内容?

I've created a batch file, but when I run it and it loads, it goes down to where the user input is, cutting off part of my program.

Is there any way to make it start at the top and make the user have to manually scroll it down to look at what he's entering in?

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

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

发布评论

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

评论(1

梦回梦里 2024-11-15 23:55:29

如果您的意思是向控制台生成大量文本(超过一页),然后向用户提出一个问题,例如:

type bighonkintextfile
set /p answer=Yes?

我只看到一个快速解决方案。 不要只是生成所有输出。通过某种寻呼机传递它,例如:

type bighonkintextfile | more
set /p answer=Yes?

然后用户将能够从顶部读取它,一旦 more 退出,将要求用户做出响应。

如果您想要更强大或更漂亮的东西,我会考虑使用精心设计的可执行文件而不是批处理文件来实现。

If you mean you generate a lot of text to the console (more than one page worth) and then ask the user a question, like:

type bighonkintextfile
set /p answer=Yes?

I see only one quick solution. Don't just generate all that output. Pass it through a pager of some sort, something like:

type bighonkintextfile | more
set /p answer=Yes?

Then the user will be able to read it from the top and once more exits, the user will be asked for a response.

If you want something more robust or pretty-looking, I'd be looking at doing that with a well-crafted executable rather than a batch file.

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