Skip to content

Instantly share code, notes, and snippets.

@smarnach
Created February 8, 2012 21:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smarnach/1774086 to your computer and use it in GitHub Desktop.
Save smarnach/1774086 to your computer and use it in GitHub Desktop.
#include <unistd.h>
#include <stdio.h>
int main(int argc, const char **argv)
{
char c[10240] = {0};
int fd;
sscanf(argv[1] + 8, "%i", &fd); // skip "/dev/fd/"
read(fd, c, 10239);
puts(c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment