6fdd5908880d6a2fb2e4f7235679981888d8055b hiram Tue Nov 14 13:37:59 2017 -0800 avoid verbose argument on a few commands no redmine diff --git src/utils/userApps/mkREADME.sh src/utils/userApps/mkREADME.sh index e452209..8d07aaf 100755 --- src/utils/userApps/mkREADME.sh +++ src/utils/userApps/mkREADME.sh @@ -25,26 +25,35 @@ echo " does not exist." usage fi cd "${DESTDIR}" echo "================================================================ to download all of the files from one of these admin/exe/ directories, for example: admin/exe/linux.x86_64/ using the rsync command to your current directory: 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) ./${F} + ;; + *) + ./${F} -verbose=2 + esac echo "================================================================" fi done >> "${RESULT}" 2>&1