#!/bin/sh
##############################################
# "short name" of spectroscopic obs.
##############################################
# Get the correspondance name => short name
( ~francois/src/anafile/vizcat -csv -t table4 ReadMe | awk '/ equivalent width/{print $5,$3}'; \
  echo ""; tabmap -b -data -ascii Star table1.dat ) \
| awk '/^$/{p++; next} 
       { if(p<1) s[$1] = $2; else print s[$0] }'
