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

NAME

App::PerlShell::Plugin::ShellCommands - Perl Shell Commands from OS Shell

SYNOPSIS

 plsh> use App::PerlShell::Plugin::ShellCommands;
 plsh> cat('filename.txt');
 
 plsh> @lines = cat('filename.txt');
 plsh> print @lines;

DESCRIPTION

App::PerlShell::Plugin::ShellCommands provides an extension to App::PerlShell to run commands from the operating system shell in the App::PerlShell. Somewhat equivalent to:

 plsh> system "cat filename.txt"

Note: Parenthesis ()s must be used around arguments to shell commands as shown with cat in the SYNOPSIS.

COMMANDS

ShellCommands - provide help

Provides help.

SEE ALSO

App::PerlShell

LICENSE

This software is released under the same terms as Perl itself. If you don't know what that means visit http://perl.com/.

AUTHOR

Copyright (c) 2016 Michael Vincent

http://www.VinsWorld.com

All rights reserved