xargs with -I option

Without -I option:

$ seq 1 3 | xargs echo test
test 1 2 3
With -I option:
$ seq 1 3 | xargs -I{} echo test {}
test 1
test 2
test 3