#!/bin/bash base='/path/to/ies4linux/scripts/' launch=$(Xdialog --stdout --title 'IEs4Linux Launcher' --no-tags --menu 'Select IE Version' 10 40 15 '1' 'IE 5.01' '2' 'IE 5.5' '3' 'IE 6.0 SP2') case $launch in 1) $base'ie5' ;; 2) $base'ie55' ;; 3) $base'ie6' ;; esac