4502682efadb379bc5b3854d4d181b1835e3b88d max Fri Jul 3 02:10:17 2020 -0700 fixing README file creator, refs #25071 diff --git src/utils/userApps/mkREADME.sh src/utils/userApps/mkREADME.sh index 288d4f2..4b6d5ce 100755 --- src/utils/userApps/mkREADME.sh +++ src/utils/userApps/mkREADME.sh @@ -35,25 +35,28 @@ rsync -aP rsync://hgdownload.soe.ucsc.edu/genome/admin/exe/linux.x86_64/ ./ ================================================================" > "${RESULT}" # a few of the commands do not understand just a -verbose=2 argument # some of those could be fixed TBD find . -mindepth 1 -type f | grep -v -w hgsql | sed -e "s/^.\///; /mkREADME.sh/d" | sort | \ while read F do if [ -x "${F}" ]; then echo "======== ${F} ====================================" echo "================================================================" case "${F}" in + ucscApiClient|trackDbIndexBb|chromToUcsc|tdbRename|tdbSort) + ./${F} -h + ;; ameme|aveCols|catUncomment|fetchChromSizes|gmtime|localtime|hgsqldump|pslPairs|qaToQac|bedJoinTabOffset|expMatrixToBarchartBed|webSync|vai.pl) ./${F} ;; *) ./${F} -verbose=2 esac echo "================================================================" fi done 2>&1 | grep -v "^ERROR:" >> "${RESULT}"