src/utils/userApps/mkREADME.sh 1.1
1.1 2009/03/30 17:55:21 hiram
Initial contents
Index: src/utils/userApps/mkREADME.sh
===================================================================
RCS file: src/utils/userApps/mkREADME.sh
diff -N src/utils/userApps/mkREADME.sh
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/utils/userApps/mkREADME.sh 30 Mar 2009 17:55:21 -0000 1.1
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+echo "================================================================
+See also: the file in this directory: bigBedWigs.txt
+ for information on operating the bigWig and bigBed
+ utilities and loading custom tracks
+================================================================
+" > README.txt
+
+echo "================================================================" \
+ >> README.txt
+
+find . -mindepth 1 -type f | sed -e "s/^.\///; /mkREADME.sh/d" | sort | \
+while read F
+do
+ if [ -x "${F}" ]; then
+ echo "======== ${F} ===================================="
+ echo "================================================================"
+ ./${F}
+ echo "================================================================"
+ fi
+done >> README.txt 2>&1
+
+#========================================================================
+# $Id$
+#========================================================================