Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Fake (temporary) filesytem

Use temporary directories and files - locate pathes that are hard-coded in the code and replace them with configuration options from a configuration file or environment variables. File::Temp

use File::Temp qw(tempdir);
my $dir = tempdir( CLEANUP => 1 );