#!/bin/bash display_help() { cat << EOF SYNOPSIS licqsh [option] OPTIONS -h display help -m nick open message box to nick -o open last event AUTHOR mathias gumz EOF } getopts ":m:oh" opts case "$opts" in o ) echo "ui_viewevent" > $HOME/.licq/licq_fifo ;; m ) echo "ui_message $OPTARG" > $HOME/.licq/licq_fifo ;; h ) display_help; exit 0;; esac