NAME IO::All - IO::All to Larry Wall! VERSION This document describes IO::All version 0.87. SYNOPSIS First, some safe examples: use IO::All; # Some of the many ways to read a whole file into a scalar $contents = io->file('file.txt')->slurp; # Read an entire file @files = io->dir('lib')->all; # Get a list of files $tail = io->pipe('-| tail app.log'); # Open a pipe to a command $line = $tail->getlin