Skip to content

Instantly share code, notes, and snippets.

@nvie
Created February 7, 2012 07:30
Show Gist options
  • Save nvie/1757965 to your computer and use it in GitHub Desktop.
Save nvie/1757965 to your computer and use it in GitHub Desktop.
Infinite stdin and xargs
nvie@Turkish % cat numargs
#!/bin/sh
echo $#
nvie@Turkish % yes moo | xargs ./numargs
5000
5000
5000
5000
5000
5000
5000
5000
5000
5000
^C
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment