%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
#!/bin/sh
bridge_parse_ports()
{
while [ x"${1+set}" = xset ]
do
# For compatibility: the `all' option.
case $1 in
all)
shift &&
set regex eth.\* em.\* 'p[0-9].*' noregex "$@"
;;
esac
# Primitive state machine...
case $1-`uname -s` in
regex-Linux)
all_interfaces=`sed -n 's%^[\ ]*\([^:]*\):.*$%\1%p' < /proc/net/dev`
shift
;;
regex-*)
echo -n "$0 needs to be ported for your `uname -s` system. " >&2
echo "Trying to continue nevertheless." >&2
shift
;;
noregex-*)
all_interfaces=
unset all_interfaces
shift
;;
esac
case ${all_interfaces+regex}-${1+set} in
regex-set)
# The following interface specification are to be parsed as regular
# expressions against all interfaces the system provides.
i=`egrep "^$1$" << EOAI
$all_interfaces
EOAI
`
shift
;;
*-set)
# Literal interfaces.
i=$1
shift
;;
*)
# No interface specification is following.
i=
;;
esac
echo $i
done
}