2008-04-15

Using redirection to merge many RNA segment files

by Forrest Sheng Bao http://fsbao.net


#!/bin/sh
for filename in *.seq
do
echo "Processing $filename"
cat $filename >> result.txt
done

No comments: