Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将 sed 命令的输出重定向为 tr 命令的输入?
使用管道“|”
sed ... | tr -d '...'
你不需要tr。map 谓词可以在ysed 中进行音译。
tr
y
看着你的评论,你说你的sed命令的输出是多行的。如果它确实在多行上,而不是环绕,则可以使用 for 循环
sed
for i in $(sed ".."); do tr "$i"; done