Linux基础命令:hash

hash [-lr] [-p pathname] [-dt] [name ...]

  • Remember or display program locations 显示指令缓冲区

  • 主要作用是提高指令调用的缓冲区

  • 主要选项

    -l:display in a format that may be reused as input 查看使用过的命令的路径
    -r:forget all remembered locations 清空哈希表的缓存
    
  • 示例

    [xzt7566@centos7-test ~]$ hash -l
    builtin hash -p /usr/bin/whereis whereis
    builtin hash -p /usr/bin/man man
    builtin hash -p /usr/bin/ls ls
    

你可能感兴趣的:(Linux基础命令:hash)