#!/bin/bash
#set -x
port=11100
while read -r line;
do
IFS=";"
set -- $line
sshpass -p "$3" ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null "$2"@"$1" -C -N -D 95.24.25.15:$port -f ;netstat -nltp | grep $port | awk '{print $4}' ;echo -e $1; port=$(($port+1));
done < ${1}
echo -e $1
ставит перенос строки, как сделать, чтобы было без переноса строки? ip=${ip//$'\n'/} # Remove all newlines.
ip=${ip%$'\n'} # Remove a trailing newline.
ip=$(echo $ip|tr -d '\n') # Remove all newlines.