#!/bin/tcsh -f #(ie run the tshell on this but don't read the .cshrc or .tcshrc) # echo version = 1.00 of grab 2003 Nov 18 # 2003 Nov 18, 1.00: origin if ($#argv != 2) then echo 'usage: grab [name] [column]' echo 'select a name and column from the figurelabels file' exit endif echo $2 > columnp grep $1 figurelabels |\ grep -v '%' |\ column |\ cat