#!/bin/sh

THR=$(ssh server1 ifconfig eth1 | ~/bin/throughput.awk)
PING=$(ping -qc3 www.heise.de | grep rtt | cut -d'/' -f 5)

echo "$THR | $PING ms"

