我访问了 usr/bin 目录,但没有名为 cat 的文件。如何找到 cat 文件的存储位置?我还使用了Linux全局搜索,但不起作用。谢谢
答案1
$ 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/cat
我访问了 usr/bin 目录,但没有名为 cat 的文件。如何找到 cat 文件的存储位置?我还使用了Linux全局搜索,但不起作用。谢谢
$ 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/cat