
#!/bin/sh
# File	: test.sh
# By	: Maarten.deBoer@Atos.net, 130927
# Subject	: Script to test some scripting issue






IFNAME="e0a"

    if [ grep e ${IFNAME} ]; then
      NWBBL="`echo "${IFNAME}"|cut -d\- -f2`"
      VLAN="`echo "${IFNAME}"|cut -d\- -f3`"
    fi


 echo "NWBBL=${NWBBL}"
 echo "VLAN=${VLAN}"



exit 0

