I am having a hard time print a seq of number, and then appending something at the end.
seq 1 3 | xargs -I {} echo {} 4
results in
1 4
2 4
3 4
However I want the result to be
1 2 3 4
Since I am learning xargsxargs, I only want to use xargsxargs to achieve this.