#!/bin/sh if ip --brief addr | grep -q "tun" ; then echo 1 elif ip --brief addr | grep -q "tail" ; then echo 2 else echo 3 fi