#!/bin/sh
OPC1() {
echo "Opcion 1"
}
OPC2() {
echo "Opcion 2"
}
SELECCIONA() {
if ( test $opc -eq 1 )
then
OPC1
else
OPC2
fi
}
#### MAIN ##########
opc=$1
if [ $1 ]
then
SELECCIONA
else
echo "1. start "
echo "2. stop "
echo "0. salir "
read opc
SELECCIONA
fi