使用管道|运算符将一个命令的输出连接到另一个命令的输入.
原文链接:https://www.f2er.com/bash/386967.htmlecho 1 | command
如果要对命令重复某些输入,可以使用yes.默认情况下,它会重复发送字符串“y”,但它也会重复您选择的不同字符串.
yes | cp * /tmp # Answer "y" to all of cp's "Are you sure?" prompts. yes 1 | command # Answer "1" repeatedly until the command exits.