50f1ff191f99e85d8f8ef21785fd27d142edec67
hiram
  Tue Nov 14 14:17:46 2017 -0800
a couple more programs that can not manage verbose argument no redmine

diff --git src/utils/userApps/mkREADME.sh src/utils/userApps/mkREADME.sh
index 8d07aaf..63fd70d 100755
--- src/utils/userApps/mkREADME.sh
+++ src/utils/userApps/mkREADME.sh
@@ -35,25 +35,25 @@
 
   rsync -aP rsync://hgdownload.cse.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
-           ameme|aveCols|catUncomment|fetchChromSizes|gmtime|localtime|hgsqldump|pslPairs|qaToQac)
+           ameme|aveCols|catUncomment|fetchChromSizes|gmtime|localtime|hgsqldump|pslPairs|qaToQac|bedJoinTabOffset|expMatrixToBarchartBed|webSync|vai.pl)
 	     ./${F}
              ;;
            *)
 	     ./${F} -verbose=2
         esac
 	echo "================================================================"
 	fi
 done >> "${RESULT}" 2>&1