1 /* Sample builtin to be dynamically loaded with enable -f and create a new
4 /* See Makefile for compilation details. */
8 #if defined (HAVE_UNISTD_H)
16 #include "bashgetopt.h"
18 /* A builtin `xxx' is normally implemented with an `xxx_builtin' function.
19 If you're converting a command that uses the normal Unix argc/argv
20 calling convention, use argv = make_builtin_argv (list, &argc) and call
21 the original `main' something like `xxx_main'. Look at cat.c for an
24 Builtins should use internal_getopt to parse options. It is the same as
25 getopt(3), but it takes a WORD_LIST *. Look at print.c for an example
28 If the builtin takes no options, call no_options(list) before doing
29 anything else. If it returns a non-zero value, your builtin should
30 immediately return EX_USAGE. Look at logname.c for an example.
32 A builtin command returns EXECUTION_SUCCESS for success and
33 EXECUTION_FAILURE to indicate failure. */
38 printf("hello world\n");
40 return (EXECUTION_SUCCESS
);
43 /* An array of strings forming the `long' documentation for a builtin xxx,
44 which is printed by `help xxx'. It must end with a NULL. By convention,
45 the first line is a short description. */
49 "this is the long doc for the sample hello builtin",
53 /* The standard structure describing a builtin command. bash keeps an array
54 of these structures. The flags must include BUILTIN_ENABLED so the
55 builtin can be used. */
56 struct builtin hello_struct
= {
57 "hello", /* builtin name */
58 hello_builtin
, /* function implementing the builtin */
59 BUILTIN_ENABLED
, /* initial flags for builtin */
60 hello_doc
, /* array of long documentation strings. */
61 "hello", /* usage synopsis; becomes short_doc */
62 0 /* reserved for internal use */