#!/bin/sh # $Id$ command="`basename \"$0\"`" startup="$HOME/.fluxbox/startup" while [ $# -gt 0 ]; do case "$1" in -c|--config) if [ $# -lt 2 ]; then echo "$command:error, missing argument" exit 1 fi shift startup=$1 ;; -h|--help) cat < "$startup" fi chmod 755 "$startup" exec "$startup" fi