| Term-ShellKit documentation | view source | Contained in the Term-ShellKit distribution. |
Term::ShellKit::Commands - Basic shell functions
> 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
The following commands are available.
Manipulates Term::ShellKit aliases.
Prints the provided argument.
Run some Perl using eval.
Run an external program with Perl's qx operator.
Exit the shell.
Uses the pod2text script to display documentation for a Perl module.
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.
| Term-ShellKit documentation | view source | Contained in the Term-ShellKit distribution. |