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