Answers:
您可以简单地使用 xargs
xsel | xargs -n1 echo mycommand
-n1
代表mycommand的一个arg,但这只是空运行,它将显示要运行的内容,将其删除 echo
对于恒定参数
xsel | xargs -I {} -n1 echo mycommand "constantArgument" {}
xsel | xargs -n1 echo mycommand -more-arg
xsel | xargs -n2 echo mycommand
每个命令两个arg