#!/bin/csh
# file: ads-name-get
# init: Oct  5 2019  Rob Rutten  Deil
# last: Oct 18 2019  Rob Rutten  Deil
# note: usage = ads-name-get abbett  

# set variable
setenv author `basename $1:gr`   # takes off ./ and .txt if there

# pacifier
echo " ===== ads-name-get starts on:" $author

# get the abs and bib files for this author
ads-name-abs $author  ## now the superfast Icarus jq method (gets all)
ads-name-bib $author  ## renewed Alberto command Feb 2021

# add the solab_name version
ads-abs2solabs $author
 
# confirmation
echo " ===== ads-name-get completed:" $author
