I've been using the advice in this question: Find value from one csv in another one (like vlookup) in bash (Linux)
To try and create a script where I go through multiple data files, and add columns in a vlookup style manner, from a couple of other (single) reference files.
datafile example (*.data)
info1 7 44567 1 2 marker1
info2 3 143679 2 2 marker2
reference file example (ref.txt, file to lookup from)
marker1 66%
marker2 34%
a second reference file example (ref2.txt, second file to lookup from)
info1 exact info2 partial
Output required
info1 7 44567 1 2 marker1 66% exact
info2 3 143679 2 2 marker2 34% partial
attempted loop (showing one reference file only, since I haven't got that bit working yet!)
#!/bin/bash
for file in `ls /path/*.data`;
do
for i in $file;
do
KEY=$(cut -f 6 $file);
printf "%s\t" $i;
grep "${KEY}" /path/ref1.txt | cut -f 2 ;
done
done
I think there are two issues with the script I've written The output currently is one line per input file, rather than all the lines of the input file appended, and it is the filename of the file rather than a line in the file. The reference bit does seem be working though (from what I can tell with a one line output). i,e:
/path/1.data 66%
Can anyone show me what is going wrong, or please suggest a cleverer way to do this? Many thanks.