NAME Env::Browser - Process environment variable $BROWSER and run web browser. SYNOPSIS use Env::Browser qw(run); run($uri); SUBROUTINES run($uri) Run browser defined by $BROWSER variable. ENVIRONMENT $BROWSER variable is defined by L. EXAMPLE1 use strict; use warnings; use Env::Browser qw(run); # Set $BROWSER variable. $ENV{'BROWSER'} = 'echo'; # Run. run('http://example.com'); # Output: # http://example.com EXAMPLE2 use strict; use warnings; use Env::Browser qw(run); # Set $BROWSER variable. $ENV{'BROWSER'} = 'echo %s'; # Run. run('http://example.com'); # Output: # http://example.com EXAMPLE3 use strict; use warnings; use Env::Browser qw(run); # Set $BROWSER variable. $ENV{'BROWSER'} = 'foo:echo %s:bar'; # Run. run('http://example.com'); # Output: # http://example.com DEPENDENCIES Readonly. SEE ALSO urlview URL extractor/launcher REPOSITORY AUTHOR Michal Josef Špaček LICENSE AND COPYRIGHT © 2013-2020 Michal Josef Špaček BSD 2-Clause License VERSION 0.06