Useful utility for looking at the file size of GSA file systems

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5556 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
depristo 2011-04-02 03:47:27 +00:00
parent f59862dc44
commit 8fdad20f33
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#!/bin/tcsh
setenv DATE `date +"%m_%d_%Y"`
setenv RESULTS "fs_sizes.$DATE.txt"
rm -f $RESULTS
foreach fs ( /humgen/gsa-scr1/ /humgen/gsa-hphome1/ /humgen/gsa-hpprojects /humgen/gsa-lpprojects )
du -sh $fs/* >> $RESULTS
end