#!/bin/bash
#
# simple script to help refresh trackDb_*.txt config files, for iterative use while updating
# configuration files from multiple sources.
#
# Each individual file should be in the format
# trackDb_blahblahblah.txt
# or
# *_trackDb.txt
#
# They will become
# trackDb.txt

cat *_trackDb.txt trackDb_* 2>/dev/null 1>trackDb.txt
