#!/bin/sh echo $1 case $1 in *youtube.com*) yt.sh $1 ;; *youtu.be*) yt.sh $1 ;; *mailto*) mutt $1 ;; *) $BROWSER $1 ;; esac