Mercurial > repos > jjjjia > cpo_prediction
view cpo_combiner.sh @ 16:1642e3d402f8 draft
planemo upload
author | jjjjia |
---|---|
date | Sun, 26 Aug 2018 22:00:43 -0400 |
parents | a14b12a71a53 |
children |
line wrap: on
line source
#!/bin/bash head -1 ${1[1]} > combined.tsv IFS=',' read -ra ADDR <<< "$1" #hax to read in a csv head -1 ${ADDR[0]} > ./combined.tsv for i in "${ADDR[@]}"; do echo $i tail -1 $i >> ./combined.tsv done