Linux 文件关联

Linux 文件关联

在桌面环境中,有与之相伴的文件关联。

我是一个极简主义的用户,不使用任何此类功能,但仍然希望通过某种文件关联来减轻我的负担。

所以我正在寻找一个可以执行如下操作的程序。

open file.pdf

这将查看扩展,并转换为okular file.pdf

当然,你也可以编写一个 bash 脚本来执行此操作。我想知道是否有现成的方法,这样我就不用重新发明轮子了。

答案1

你想要xdg-open这个。

答案2

您可以将 gnome-open 用于 ubuntu / gnome。

答案3

您还可以使用zsh

# Suffix aliases (Type a file as a command and this program will launch)        
alias -s jpg=gthumb
alias -s png=gthumb
alias -s pdf=okular
alias -s html=firefox
alias -s ogg=mplayer

在您的示例中,您只需输入file.pdf,okular 就会启动

相关内容