bash scripting help

Hi Guys i have a <script?> that spits out the location of each printer using snpget

here is the code

for i in `sed -n '/Start Printer/,/End Printer/p' /hosts/blah/etc/dhcp/hosts.conf | awk '!/^#/ {print $2}' | egrep -v \
'broke|^primera|^seasnail|^conch|^spidercrab|^limpet|^fanworm|^kelp|^abalone|^sponge|^sandhopper|^starfish' `; do
set -o pipefail
if pages=`snmpget -Ov -v1 -c public $i mib-2.43.5.1.1.17.1 | awk '{print $2}' |cut -d - -f 1 |sed 's/^.//'`
then
  printf "%-13s %s\n" "$i" "$pages"  | sort -d
else
  printf "%-13s %s\n" "$i" host-error | sort -d
fi
set +o pipefail
done

i have some other smpget command that i want to combine
i want to add the follow

`snmpget -Ov -v1 -c public "$i" sysLocation.0 2>/dev/null | awk '{print $2}'`

and

snmpget -v1 -c public "$1" SNMPv2-MIB::sysDescr.0 | awk '{ print $4, $5, $6, $7}'

much thanks

What is your question?

sorry my questions was how can i add those two extra command so it will print out all three in the output,