=head1 NAME zoid - a modular perl shell =head1 SYNOPSIS zoid [options] [-] [files] =head1 DESCRIPTION Zoidberg provides a modular Perl shell written, configured, and operated entirely in Perl. It aspires to be a fully operational login shell with all the features one normally expects. But it also gives direct access to Perl objects and data structures from the command line, and allows you to run Perl code within the scope of your commandline. Although Zoidberg does not do the language interpreting itself -- it uses perl to do this -- it supplies powerful language extensions aimed at creating an easy to use interface. By default B runs an interactive commandline when both STDIN and STDOUT are terminal devices, or reads from STDIN till End Of Line and execute each line like it was entered interactively. When an I is specified by one of the commandline options this will suppress the default behavior and exit after executing that action. If any file names are given, these will be interpreted as source scripts and suppress default behavior. Be aware that these source scripts are expected to be Perl scripts and are B interpreted or executed the same way as normal input. This document only describes the commandline script B, see L(1) and L(1) for help on using the zoidberg shell. =head1 OPTIONS =over 4 =item B<-e> I, B<--exec>=I Execute a string as interpreted by zoidberg. If non-interactive exits with exit status of command string. Multiple commands may be given to build up a multi-line script. Make sure to use semicolons where you would in a normal multi-line script. =item B<-C>, B<--config> Print a list of configuration variable of this installation and exit. Most importantly this tells you where B will search for it's configuration and data files. =item B<-c> I, B<--command>=I Does the same as B<--exec> but this is bound to change. =item B<-D>, B<-D>I B<--debug> Set either the global debug bit or set the debug bit for the given class. Using the global variant makes B output a lot of debug information. =item B<-h>, B<--help> =item B<-u>, B<--usage> Print a help message and exits. =item B<-I>I[,I, ...] The specified directories are added to the module search path C<@INC>. =item B<-i>, B<--interactive> Start an interactive shell. This is the default if no other options are supplied. =item B<-l>, B<--login> Force login behavior, this will reset your current working directory. This variable is also available to plugins and scripts, which might act on it. =item B<-m>I =item B<-M>I =item B<-M>I=I[,I, ...] Import I into the eval namespace. With B<-m> explicit import empty list, with B<-M> default arguments or specified arguments. Details like the equivalent perl option, see L(1). =item B<-o> I =item B<-o> I=I =item B<+o> I Set (B<-o>) or unset (B<+o>) one or more settings. =item B<-s>, B<--stdin> Read input from stdin. This is the default if no other options are supplied and neither stdin or stdout are terminal devices. =item B<-V>, B<--version> Display version information. =item B<-v>, B<--verbose> Sets the shell in verbose mode. This will cause each command to be echoed to STDERR. =back =head1 ENVIRONMENT The variables $PWD, $HOME and $USER are set to default values if not yet set by the parent process. The variable $ZOID will point to the location of the B executable, it is similar to $SHELL for POSIX compliant shells. B uses a different variable because some programs seem to expect $SHELL to point to a POSIX compliant shell. To switch off ansi colours on the terminal set $CLICOLOR to 0 (null). =head1 FILES Zoidberg uses rc files, data files and plugin files, use the B<--config> switch to check the search paths used. Which rcfiles are loaded is controlled be the 'rcfiles' and 'norc' settings, try C to skip all rcfiles or C to use files other then the default. The runtime search path for plugins etc. can be controlled with the 'data_dirs' setting, try C. =head1 DIAGNOSTICS Error messages may be issued either by B or by one any of the modules in use. The B utility itself will only complain when the commandline options are wrong. If the error was thrown by one of zoid's core modules, the error message will either start with the module name or the name of the command that went wrong. =head1 RESTRICTIONS Source files and command input are I interpreted the same way. Use B<-e> _or_ B<-c>, do not mix them. =head1 BUGS To submit bug reports visit http://rt.cpan.org or mail the author. =head1 SEE ALSO L(1), L(1), L(1), L(1), L(1), L(3), L =head1 AUTHORS Jaap Karssenberg || Pardus [Larus] Epardus@cpan.orgE R.L. Zwart, Erlzwart@cpan.orgE =head1 COPYRIGHT Copyright (c) 2002 Jaap G Karssenberg and RL Zwart. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either the GNU General Public License or the Artistic License for more details. See L and L