Skip to content

Instantly share code, notes, and snippets.

@mattn
Created July 1, 2009 07:51
Show Gist options
  • Save mattn/138658 to your computer and use it in GitHub Desktop.
Save mattn/138658 to your computer and use it in GitHub Desktop.
use IO::AIO;
aio_open "/temp/passwd", O_RDONLY, 0, sub {
my $fh = shift
or die "/temp/passwd: $!";
warn <$fh>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment