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.
如果我们在 Arch Linux 中安装守护程序服务,如何获取文件的位置和名称。以及获取安装添加的文件列表的命令是什么。
要获取已安装包中包含的文件列表(无论是否来自 AUR),只需执行以下操作:
pacman -Ql package_name
如果您只想要每行一个路径(在脚本中使用),请使用:
pacman -Qql package_name