Differences between revisions 2 and 3
Revision 2 as of 2009-02-24 21:13:53
Size: 808
Editor: GreyCat
Comment: finish basic instructions, attach patch
Revision 3 as of 2009-02-24 21:19:19
Size: 831
Editor: GreyCat
Comment: category tag
Deletions are marked like this. Additions are marked like this.
Line 16: Line 16:

----
CategoryShell

BASH has the ability to load compiled modules to create new commands which interface with the operating system more directly than can be achieved by calling external commands. These are called loadable builtins.

Loadable builtins must be compiled for your system, usually from within the bash source tree:

.../bash-4.0$ CC=whatever ./configure
.../bash-4.0$ make
.../bash-4.0$ exec ./bash
.../bash-4.0$ cd examples/loadables/
.../loadables$ make
.../loadables$ enable -f finfo finfo
.../loadables$ help finfo

This requires a platform which bash knows how to support for loading shared objects/libraries. On most systems, bash supports this using the dlopen() function. If you're on older versions of HP-UX, there is a patch by GreyCat: bash-4.0-shl.diff


CategoryShell

BashLoadableBuiltins (last edited 2020-04-25 02:18:36 by c-73-202-78-216)