我有一个完成某项任务的脚本,完成后我通常将其输出到另一个脚本。我想绕过这个过程并自动化它。可能通过这样做:
#end of first script's duties
print 'Would you like to run this output into the next script?'
# wait for user input 'yes or no'
# Possibly move on to next script...
如果用户在 30 秒内没有提供任何输入,有没有办法让脚本假设“是”?另外作为奖励,我将如何在命令行中添加倒数计时器?我很新,这看起来很疯狂,但我很好奇这将是多么难以实施。谢谢。