Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在linux中,如何查看/usr/bin安装包后添加的所有新可执行文件sudo apt-get install <package>?
/usr/bin
sudo apt-get install <package>
具体就我而言,我试图找出哪个是用于 texlive 包的主要可执行文件。
我试过 dpkg -L texlive了,但只列出了下面的文件/usr/share而不是/usr/bin
dpkg -L texlive
/usr/share
此命令显示给定包安装的所有可执行文件:
dpkg -L packagename | xargs file | grep executable
如果您只想查看安装在 中的可执行文件/usr/bin,请使用:
dpkg -L packagename | xargs file | grep ^/usr/bin | grep executable
如果您的包没有在 下列出任何内容/usr/bin,则它可能没有任何可执行文件 - 这对于库和其他帮助程序包很典型。