1 This file is hash.def
, from which is created hash.c.
2 It implements the builtin
"hash" in Bash.
4 Copyright (C
) 1987-2006 Free Software Foundation
, Inc.
6 This file is part of GNU Bash
, the Bourne Again SHell.
8 Bash is free software
; you can redistribute it and
/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation
; either version
2, or (at your option
) any later
13 Bash is distributed in the hope that it will be useful
, but WITHOUT ANY
14 WARRANTY
; without even the implied warranty of MERCHANTABILITY or
15 FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License along
19 with Bash
; see the file COPYING. If not
, write to the Free Software
20 Foundation
, 59 Temple Place
, Suite
330, Boston
, MA
02111 USA.
25 $FUNCTION hash_builtin
26 $SHORT_DOC hash
[-lr
] [-p pathname
] [-dt
] [name ...
]
27 For each NAME
, the full pathname of the command is determined and
28 remembered. If the
-p option is supplied
, PATHNAME is used as the
29 full pathname of NAME
, and no path search is performed. The
-r
30 option causes the shell to forget all remembered locations. The
-d
31 option causes the shell to forget the remembered location of each NAME.
32 If the
-t option is supplied the full pathname to which each NAME
33 corresponds is printed. If multiple NAME arguments are supplied with
34 -t
, the NAME is printed before the hashed full pathname. The
-l option
35 causes output to be displayed in a format that may be reused as input.
36 If no arguments are given
, information about remembered commands is displayed.
43 #include
"../bashtypes.h"
45 #if
defined (HAVE_UNISTD_H
)
51 #include
"../bashansi.h"
52 #include
"../bashintl.h"
55 #include
"../builtins.h"
57 #include
"../findcmd.h"
58 #include
"../hashcmd.h"
60 #include
"bashgetopt.h"
62 extern int posixly_correct
;
63 extern int dot_found_in_search
;
64 extern char
*this_command_name
;
66 static int add_hashed_command
__P((char
*, int
));
67 static int print_hash_info
__P((BUCKET_CONTENTS *)
);
68 static int print_portable_hash_info
__P((BUCKET_CONTENTS *)
);
69 static int print_hashed_commands
__P((int
));
70 static int list_hashed_filename_targets
__P((WORD_LIST
*, int
));
72 /* Print statistics on the current state of hashed commands. If LIST is
73 not empty
, then
rehash (or hash in the first place
) the specified
79 int expunge_hash_table
, list_targets
, list_portably
, delete
, opt
;
82 if (hashing_enabled
== 0)
84 builtin_error (_("hashing disabled"));
85 return (EXECUTION_FAILURE
);
88 expunge_hash_table
= list_targets
= list_portably
= delete
= 0;
89 pathname
= (char *)NULL
;
90 reset_internal_getopt ();
91 while ((opt
= internal_getopt (list
, "dlp:rt")) != -1)
102 pathname
= list_optarg
;
105 expunge_hash_table
= 1;
117 /* hash
-t requires at least one argument.
*/
118 if (list
== 0 && list_targets
)
121 return (EXECUTION_FAILURE
);
124 /* We want hash
-r to be silent
, but hash
-- to print hashing info
, so
125 we test expunge_hash_table.
*/
126 if (list
== 0 && expunge_hash_table
== 0)
128 opt
= print_hashed_commands (list_portably
);
129 if (opt
== 0 && posixly_correct
== 0)
130 printf (_("%s: hash table empty\n"), this_command_name
);
132 return (EXECUTION_SUCCESS
);
135 if (expunge_hash_table
)
138 /* If someone runs `hash
-r
-t xyz
' he will be disappointed. */
140 return (list_hashed_filename_targets (list, list_portably));
142 #if defined (RESTRICTED_SHELL)
143 if (restricted && pathname && strchr (pathname, '/'))
145 sh_restricted (pathname);
146 return (EXECUTION_FAILURE);
150 for (opt = EXECUTION_SUCCESS; list; list = list->next)
152 /* Add, remove or rehash the specified commands. */
153 w = list->word->word;
156 if (is_directory (pathname))
159 builtin_error ("%s: %s", pathname, strerror (EISDIR));
161 builtin_error ("%s: is a directory", pathname);
163 opt = EXECUTION_FAILURE;
166 phash_insert (w, pathname, 0, 0);
168 else if (absolute_program (w))
172 if (phash_remove (w))
175 opt = EXECUTION_FAILURE;
178 else if (add_hashed_command (w, 0))
179 opt = EXECUTION_FAILURE;
187 add_hashed_command (w, quiet)
195 if (find_function (w) == 0 && find_shell_builtin (w) == 0)
197 full_path = find_user_command (w);
198 if (full_path && executable_file (full_path))
199 phash_insert (w, full_path, dot_found_in_search, 0);
211 /* Print information about current hashed info. */
213 print_hash_info (item)
214 BUCKET_CONTENTS *item;
216 printf ("%4d\t%s\n", item->times_found, pathdata(item)->path);
221 print_portable_hash_info (item)
222 BUCKET_CONTENTS *item;
224 printf ("builtin hash -p %s %s\n", pathdata(item)->path, item->key);
229 print_hashed_commands (fmt)
232 if (hashed_filenames == 0 || HASH_ENTRIES (hashed_filenames) == 0)
236 printf ("hits\tcommand\n");
237 hash_walk (hashed_filenames, fmt ? print_portable_hash_info : print_hash_info);
242 list_hashed_filename_targets (list, fmt)
246 int all_found, multiple;
251 multiple = list->next != 0;
253 for (l = list; l; l = l->next)
255 target = phash_search (l->word->word);
259 sh_notfound (l->word->word);
263 printf ("builtin hash -p %s %s\n", target, l->word->word);
267 printf ("%s\t", l->word->word);
268 printf ("%s\n", target);
272 return (all_found ? EXECUTION_SUCCESS : EXECUTION_FAILURE);