src/utils/qa/findBigFiles.csh 1.3
1.3 2009/04/11 00:37:03 rhead
Sourced new qaConfig file at the top. Changed -h hgwbeta lines to look for sql host stored in a variable, specified in the new qaConfig file.
Index: src/utils/qa/findBigFiles.csh
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/qa/findBigFiles.csh,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 1000000 -r1.2 -r1.3
--- src/utils/qa/findBigFiles.csh 25 Feb 2008 19:16:13 -0000 1.2
+++ src/utils/qa/findBigFiles.csh 11 Apr 2009 00:37:03 -0000 1.3
@@ -1,19 +1,20 @@
#!/bin/tcsh
+source `which qaConfig.csh`
if ($#argv != 1) then
# no command line args
echo
echo " gets the sizes of files from here down sorted by size."
echo
echo " usage: go"
echo
exit
else
if ($argv[1] != "go") then
$0
exit 1
endif
endif
find . -type f | xargs ls -og | awk '{print $3, "\t", $7}' | sort -n \
| tail -50