Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • 1
    xargs deploy has quite inane rules for input delimitation. I'd suggest avoiding it, or using -0 instead. Also, going out to /dev/tty results in some potentially undesirable properties (such as the output defying further redirection) -- I'd suggest switching around FDs instead if you want to go this route. Commented Nov 24, 2015 at 17:46
  • @ChrisDown Thanks for the commentary. I improved/simplified it a little, taking your feedback into account. My main point was that saving to a file isn't necessary. Commented Nov 24, 2015 at 18:39
  • 1
    @Chris Down - quoting aside, xargs -t kind of does exactly what is asked for here. -p is even closer. Commented Nov 25, 2015 at 11:39