如何跳过按Enter键以使用python在shell命令中继续

时间:2019-06-21 20:18:07

标签: python linux

在显示它后,如何跳过按Enter继续,我知道如何跳过-是/否,通过键入-y例如,但是输入Enter时的解决方案是什么? 谢谢。

1 个答案:

答案 0 :(得分:1)

如果您可以使用命令行,可以使用yes命令。您可以让它反复重复一个字符串,因此可以使用yes '\n' | yourcommand让它在运行命令时反复按换行键。

$ man yes

YES(1)                    BSD General Commands Manual                   YES(1)

NAME
     yes -- be repetitively affirmative

SYNOPSIS
     yes [expletive]

DESCRIPTION
     yes outputs expletive, or, by default, ``y'', forever.

HISTORY
     The yes command appeared in 4.0BSD.

4th Berkeley Distribution        June 6, 1993        4th Berkeley Distribution