#!/bin/sh # Following line works only if you are using SOCKLINGER: echo -n "[peer $SOCKLINGER_PEER]" >&2 let i=0 while [ $# -ge $i ] do eval echo -n '" [$i: $'$i']"' >&2 let i++ done echo >&2 exit 0