两个同一行批处理文件 - 只有一行正在工作

发布于 2024-11-08 22:25:12 字数 209 浏览 0 评论 0原文

每条生产线都在自己工作。但如果它们位于同一文件中,则只有第一行有效。

pyuic4 C:\file1.ui -o C:\file1.py
pyuic4 C:\file2.ui -o C:\file2.py

怎么了?

它是Windows。

并且暂停在此文件中不起作用。它只是在第一行之后结束(但它执行正确)

Every line is working by itself. But only first line is working if they are in the same file.

pyuic4 C:\file1.ui -o C:\file1.py
pyuic4 C:\file2.ui -o C:\file2.py

What is wrong?

It is Windows.

And pause did not working in this file. It just end after first line (but it is executed right)

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

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

发布评论

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

评论(1

眼眸印温柔 2024-11-15 22:25:12

心灵调试:pyuic是一个批处理文件。

代替使用

call pyuic4 C:\file1.ui -o C:\file1.py
call pyuic4 C:\file2.ui -o C:\file2.py

Psychic debugging: pyuic is a batch file.

Use

call pyuic4 C:\file1.ui -o C:\file1.py
call pyuic4 C:\file2.ui -o C:\file2.py

instead.

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