xargs has

       -p, --interactive
              Prompt  the user about whether to run each command line and read
              a line from the terminal.  Only run the command line if the  re-
              sponse starts with `y' or `Y'.  Implies -t.

But then one needs to enter y RET y RET y RET .

To get the same results with just RET RET RET
xargs needs a --negate-interactive switch,
that would only skip items if y or Y was given!

Reply via email to