GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Shell::EnvImporter::Result(3) User Contributed Perl Documentation Shell::EnvImporter::Result(3)

package Shell::EnvImporter::Result - Results of a Shell::EnvImporter run

  use Shell::EnvImporter;

  my $sourcer = Shell::EnvImporter->new(
                  command  => $command,
                ) or die "$@";


  my $result = $sourcer->result;

  if ($result->succeeded()) {

    print "Variables imported:  ", join(", ", $result->imported), "\n";

  } else {

    print "Command failed! with ", $result->command_status, " status\n";
    print "STDERR:  ", $result->stderr, "\n";

  }

Shell::EnvImporter allows you to import environment variable changes exported by an external script or command into the current environment. The Shell::EnvImporter::Shell object provides more control over interaction with the shell.

failed()
Summary status. Returns true if any of the shell status, user command status, or 'env' command status are nonzero, and returns false otherwise.
succeeded()
Summary status. Returns true if the shell status, user command status, and 'env' command status are all zero, and returns false otherwise.

shell_status()
Status of the shell - zero if the shell was successfully spawned, nonzero otherwise.
shell_output()
Output produced by the shell when spawning (e.g. output from startup scripts).
command_status()
Status of the user command.
command_output()
Output produced by the user command.
env_status()
Status of the 'env' command.
stderr()
Standard error output produced by the shell, the user command, and/or the 'env' command.
imported()
List of variables imported by the shell.

David Faraldo, <dfaraldo@cpan.org>

  Copyright (C) 2005-2006 by Dave Faraldo

  This library is free software; you can redistribute it and/or modify it
  under the same terms as Perl itself.  No warranty is expressed or implied.

Hey! The above document had some coding errors, which are explained below:
Around line 215:
You forgot a '=back' before '=head1'
2006-09-01 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.