站点图标 IDC铺

hash命令 – 管理命令运行时查询的哈希表

hash命令来自于英文词组“Hash Algorithm”的缩写,中文译为哈希算法或杂凑算法,其功能是用于管理命令运行时查询的哈希表。hash命令可以显示与删除命令运行时系统查询的哈希表信息,如果不加任何参数,则会默认输出路径列表的信息,这份列表会包含先前hash命令调用找到的Shell环境中命令的路径名。

语法格式: hash [参数] [目录]

常用参数:

-d 在哈希表中清除记录
-l 显示哈希表中的命令
-p<指令> 将具有完整路径的命令加入到哈希表中
-r 清除哈希表中的记录
-t 显示哈希表中命令的完整路径

参考实例

显示哈希表中的命令:

[root@linuxcool ~]# hash -l
builtin hash -p /usr/sbin/ifconfig ifconfig
builtin hash -p /usr/bin/cat cat
builtin hash -p /usr/bin/pidof pidof

删除哈希表中的命令:

[root@linuxcool ~]# hash -r 

向哈希表中添加命令:

[root@linuxcool ~]# hash -p /usr/sbin/adduser myadduser 

在哈希表中清除记录:

[root@linuxcool ~]# hash -d
hits	command
   0	/usr/sbin/adduser
退出移动版