我尝试在终端中使用以下命令安装用 Python 编写的应用程序:
sudo make install
在安装的最后阶段,弹出此消息:
[ -x /usr/bin/update-desktop-database ] && sudo update-desktop-database -q
我只是想知道它的含义以及如何完成安装过程。
答案1
线路
[ -x /usr/bin/update-desktop-database ] && sudo update-desktop-database -q
意思是“如果/usr/bin/update-desktop-database
存在并且可以执行则运行sudo update-desktop-database -q
。
该命令根据、 和文件update-desktop-database
中的信息创建 MIME 类型处理程序的数据库。.desktop
/usr/share/applications
/usr/local/share/applications
$HOME/.local/share/applications
安装过程很可能已经完成,您应该可以使用该应用程序了。