Han Boetes Mon, 17 Apr 2006 21:11:13 -0700
eric.p wrote: > if [ `ifconfig -a|grep -c tun0` -ne 0 ]; then More ellegant is:
if ! ifconfig -a | grep -q tun0; then # Han