Revision 268
Added by Aaron Marcuse-Kubitza about 13 years ago
join | ||
---|---|---|
9 | 9 |
for map in *-$1.*.csv; do |
10 | 10 |
type="${map%.*}" # remove extension |
11 | 11 |
type="${type#*.}" # remove up to last "." |
12 |
../scripts/util/join <"$map" "$1-$2.$type.csv"|\
|
|
13 |
../scripts/util/sort 1 0 >"${map/$1/$2}" # sort on output col
|
|
12 |
../util/join <"$map" "$1-$2.$type.csv"|\ |
|
13 |
../util/sort 1 0 >"${map/$1/$2}" # sort on output col |
|
14 | 14 |
done |
Also available in: Unified diff
Moved everything in scripts to root. inputs_Makefile: Don't run "all" when installing.