18 lines
406 B
Tcsh
Executable File
18 lines
406 B
Tcsh
Executable File
#!/bin/tcsh
|
|
|
|
# what's the status of all of the gsa hosts
|
|
echo "GSA host status"
|
|
bhosts gsahosts
|
|
|
|
echo "\nGSA queue usage"
|
|
bjobs -u all -q gsa | awk '$2 !~ "USER" {print $2}' | sort | uniq -c
|
|
|
|
echo "\nGeneral computing resources"
|
|
bqueues gsa week short broad
|
|
|
|
echo "\nFH jobs"
|
|
bjobs -u gsa-adm
|
|
|
|
echo "\nFile system status"
|
|
df -h /humgen/* /broad/1KG /broad/shptmp /humgen/gsa-firehose /humgen/gsa-firehose2
|