Term::ShellKit::Commands - Basic shell functions


Term-ShellKit documentation  | view source Contained in the Term-ShellKit distribution.

Index


NAME

Top

Term::ShellKit::Commands - Basic shell functions

SYNOPSIS

Top

  > perl -MTerm::ShellKit -eshell
  Term::ShellKit: Starting interactive shell

  Term::ShellKit> eval join ', ', 1 .. 10 
  1, 2, 3, 4, 5, 6, 7, 8, 9, 10

  Term::ShellKit> alias incr eval $i += 1
  Term::ShellKit> incr
  1
  Term::ShellKit> incr
  2

  Term::ShellKit> help
  NAME
      Term::ShellKit - Generic Perl command-line environment
  ...

  Term::ShellKit> exit




COMMANDS

Top

The following commands are available.

alias

Manipulates Term::ShellKit aliases.

echo (alias ")

Prints the provided argument.

eval (alias $)

Run some Perl using eval.

execute (alias !)

Run an external program with Perl's qx operator.

exit (alias quit, or q)

Exit the shell.

help (alias ?)

Uses the pod2text script to display documentation for a Perl module.

kit

Load a ShellKit package.

Try "kit Dev" to load the Dev kit, or "help kit Dev" to learn more about it.

Typing "kit AutoPager" will provide ShellKit with output buffered through /usr/bin/more or your prefered pager program.

SEE ALSO

Top

Term::ShellKit


Term-ShellKit documentation  | view source Contained in the Term-ShellKit distribution.