我访问了usr/bin目录,但没有名为cat的文件。如何找到猫文件的存储位置?我还使用了不起作用的Linux全局搜索。谢谢
发布于 2020-05-28 17:44:34
$ whereis -b cat
cat: /usr/bin/cat$ command -v cat
/usr/bin/cat$ type cat
cat is hashed (/usr/bin/cat)(未通知)
$ which cat
/usr/bin/cathttps://unix.stackexchange.com/questions/589563
复制相似问题