「type which」は「which is hashed」と言うのはなぜですか?
シェル組み込みの場合(例えば、typeそれ自体): $ type type type is a shell builtin $ which type <Doesn't return anything since it's a shell builtin, silently exits> コマンドの場合(通常)(例python): $ type python python is /usr/bin/python $ which python /usr/bin/python の場合which(これはにあるコマンドです/usr/bin/which) $ type which which is hashed (/usr/bin/which) $ which which /usr/bin/which なんでtype whichそんなこと言うのwhich is hashed?whichハッシュされることの重要性は何ですか、実際にはどういう意味ですか?