* Added "wgo" (what's going on) to check the status of processes

on login node. Currently supposed to be used for Turing only.
master
Wirawan Purwanto 5 years ago
parent 1387997010
commit a65338a8bf
  1. 19
      turing/admin/wgo

@ -0,0 +1,19 @@
#!/bin/bash
DATETIME=$(date +"%Y%m%d-%H%M%S")
LOGDIR=$HOME/admin/login-patrol/turing
whats_going_on () {
date
echo
top -b -n 1 | head -n 60 | tee $LOGDIR/top-${DATETIME}
echo
ps fuxa > $LOGDIR/ps-fuxa-${DATETIME}
cat $LOGDIR/ps-fuxa-${DATETIME}
}
if test -t 1; then
whats_going_on | less
else
whats_going_on
fi
Loading…
Cancel
Save