Differences between revisions 1 and 7 (spanning 6 versions)
Revision 1 as of 2008-12-31 20:26:32
Size: 550
Editor: GreyCat
Comment:
Revision 7 as of 2020-04-25 02:18:36
Size: 1132
Editor: c-73-202-78-216
Comment: Update link to dead article
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
## page was renamed from BashLoadable
Line 3: Line 4:
Loadable builtins must be compiled for your system, usually from within the bash source tree: Loadable builtins must be compiled for your system. Some are included as examples in the bash source tree:
Line 6: Line 7:
 .../bash-3.2$ CC=whatever ./configure
 .../bash-3.2$ make
 .../bash-3.2$ exec ./bash
 .../bash-3.2$ cd examples/loadables/
 .../loadables$
.../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
Line 13: Line 16:
The rest is going to require a machine with `dlopen()` apparently. :( 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: [[attachment:bash-4.2-shl.diff]] (older version: [[attachment:bash-4.0-shl.diff]]).

A bit more info can also be found at:

 * http://cfajohnson.com/shell/bash/loadables/
 * https://web.archive.org/web/20160303032434/http://cfajohnson.com/shell/articles/dynamically-loadable/

----
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. Some are included as examples in 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.2-shl.diff (older version: bash-4.0-shl.diff).

A bit more info can also be found at:


CategoryShell

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