xref: /AOO41X/main/shell/source/unix/misc/kde-open-url.sh (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1#!/bin/sh
2
3# special handling for mailto: uris
4if echo $1 | grep '^mailto:' > /dev/null; then
5  kmailservice "$1" &
6else
7  kfmclient openURL "$1" &
8fi
9
10exit 0
11