51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

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

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

**语法格式:**hash 参数 目录名

常用参数:

|----|----------------|---|-----------|---------------| | -f | 设置要进行哈希运算的文件路径 | | -t | 显示哈希表中命令的完整路径 | | -l | 显示哈希表中的命令 | | --help | 显示帮助信息 | | -p | 将完整路径的命令加入哈希表 | | --verbose | 显示执行过程详细信息 | | -r | 清除哈希表中的记录 | | | |

参考示例

显示哈希表中的命令:

[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
赞(0)
未经允许不得转载:工具盒子 » hash命令 – 管理命令运行时查询的哈希表