我用的是Ubuntu-15.10。除了香草安装,我还安装了许多应用程序。
现在,我想知道有多少已安装的软件包是在GPL或第三方许可证(例如Fluendo)下获得许可的。
有什么办法能查出来吗?还是需要手动检查每个已安装应用程序的每个许可证?
下面是我用来列出各种已安装许可文件的名称的片段。
find /usr/share/doc -type f -name copyright -exec grep "License\:" {} + | cut -f3 -d: | sort -u发布于 2016-02-19 10:28:50
下面的代码将帮助我列出Ubuntu15.04上各种应用程序安装的许可证。
find /usr/share/doc -type f -name copyright -exec grep "License\:" {} + | cut -f3 -d: | sort -uhttps://unix.stackexchange.com/questions/264055
复制相似问题