Você deseja fazer um loop a partir de um arquivo de texto: use while read Exemplo:
while read line
do
echo -e "$line\n"
done <file.txt
Seu script pode ter esta aparência ( não testei )
executar: ./myscript.sh inpufile.txt
#!/bin/bash
#
# This script takes a filename as argument
# The FILE contains a number per line
# Test argument
if [ -z "$1" ]; then
echo "No argument supplied"
exit
else
inputfile=$1
if [ ! -f $inputfile ]; then
echo "InputFile "$inputfile" not found"
exit
fi
fi
# Loop
while read line
do
if [ "$line" == "6" -o "$line" == "33" -o "$line" == "55" -o "$line" == "74" -o "$line" == "80" -o "$line" == "91" -o "$line" == "169" ]
then
NET=4
ST=$line
else
if [ "$line" -lt "251" ]; then
NET=1
ST=$line
else
NET=2
ST='expr $line - 250'
fi
fi
echo $NET
echo $ST
ssh root@10.$NET.$ST.210 -C "service xvfbd stop && service xvfbd start && service yespayd start && service yespayd status"
done <$inputfile