The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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<The BROWSER project|http://www.catb.org/~esr/BROWSER/index.html>.

EXAMPLE1

 # Pragmas.
 use strict;
 use warnings;

 # Modules.
 use Env::Browser qw(run);

 # Set $BROWSER variable.
 $ENV{'BROWSER'} = 'echo';

 # Run.
 run('http://example.com');

 # Output:
 # http://example.com

EXAMPLE2

 # Pragmas.
 use strict;
 use warnings;

 # Modules.
 use Env::Browser qw(run);

 # Set $BROWSER variable.
 $ENV{'BROWSER'} = 'echo %s';

 # Run.
 run('http://example.com');

 # Output:
 # http://example.com

EXAMPLE3

 # Pragmas.
 use strict;
 use warnings;

 # Modules.
 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.

REPOSITORY

https://github.com/tupinek/Env-Browser

AUTHOR

Michal Špaček mailto:skim@cpan.org

http://skim.cz

LICENSE AND COPYRIGHT

BSD license.

VERSION

0.03