Skip to content

Instantly share code, notes, and snippets.

@jhunt
Created December 2, 2017 03:20
Show Gist options
  • Save jhunt/72ddaaf4d8b38c831ffadc983dc98040 to your computer and use it in GitHub Desktop.
Save jhunt/72ddaaf4d8b38c831ffadc983dc98040 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use strict;
use warnings;
open my $fh, "<&=", 3
or die "fd 3 not open!\n";
while (<$fh>) {
chomp;
printf("read '$_' from fd 3\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment