Script Tabstop

Hello,

I have a problem to set a tabstop of 32 in a script

set tabstop=32
#
 for VLAN in `cat /usr/admin/CSCOvmps/files/vmpscfg | grep -v "^!" | awk '{print $1}'`
 do
  TOTAL_ADDR_VMPS=`cat /usr/admin/CSCOvmps/files/vmpsaddr | grep -v "^!" | grep -ic "${VLAN}$"`
  VLAN_MAX=`cat /usr/admin/CSCOvmps/files/vmpscfg | grep -v "^!" | grep "${VLAN}        " | awk '{print $3}'`
  echo   "${VLAN}\t\t${VLAN_MAX}\t\t${TOTAL_ADDR_VMPS}"
 done

the output is

berlin 10 10
city123456789 10 10
country 10 10

I'd like to get ( _ = blank/pace)

berlin_________10____10
city123456789__10____10
country________10____10

Regards

Rolf

Hi,

thanks a lot. I could use it.

Many thanks

Rolf