回答:
あなたは簡単に使うことができます xargs
xsel | xargs -n1 echo mycommand
-n1
mycommandの1つの引数を意味しますが、それは単なるドライランであり、何を実行するかを示し、それを実行します。 echo
定数引数の場合
xsel | xargs -I {} -n1 echo mycommand "constantArgument" {}
xsel | xargs -n1 echo mycommand -more-arg
xsel | xargs -n2 echo mycommand
コマンドごとに2つの引数