No Ubuntu, um atalho de URL é armazenado em um arquivo .desktop da seguinte forma (por exemplo):
[Desktop Entry]
Encoding=UTF-8
Name=Link to Best Practices Software engineering
Type=Link
URL=http://abdennour-insat.blogspot.com/
Icon=text-html
Se você ainda deseja abrir seus arquivos de URL do Windows no Ubuntu, aqui está descrito como você pode fazer isso:
- Como abrir. url Atalhos do Internet Explorer no Ubuntu usando o Firefox .
O script Perl dado nesse artigo parece estar quebrado, mas o código a seguir deve fazer a mesma coisa corretamente:
#!/usr/bin/perl
# Script to make Microsoft Windows Internet Shortcuts (*.url) work on Linux.
my $browser = 'sensible-browser'; # use the system default browser
while (<>) {
# match any line of the form "URL = something-without-spaces"
if (/^\s*URL\s*=\s*(\S+)\s*$/) {
exec $browser, $1; # successful exec never returns
die "$0: could not launch $browser: $!\n";
}
}