From: Chris Koeritz Date: Thu, 18 Apr 2013 00:15:55 +0000 (-0400) Subject: moved to nicer name, or so we think. X-Git-Tag: 2.140.90~1010 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=8fd6119ab7f92b508887773eb695a82d1a3b417c;p=feisty_meow.git moved to nicer name, or so we think. --- diff --git a/scripts/processes/show_hot_ones.sh b/scripts/processes/show_hot_ones.sh new file mode 100644 index 00000000..2e1fac6c --- /dev/null +++ b/scripts/processes/show_hot_ones.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +# shows the current processes ordered by cpu usage. + +# generate a nice separator. +for ((i=0; i<14; i++)); do line+='='; done + +echo $line +echo "Process list by CPU usage for $(date)" +ps wuax --sort -%cpu | head -n 8 +echo $line diff --git a/scripts/processes/show_hot_processes.sh b/scripts/processes/show_hot_processes.sh deleted file mode 100644 index e9f0388c..00000000 --- a/scripts/processes/show_hot_processes.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -# shows the current processes ordered by cpu usage. - -# generate a nice separator. -for ((i=0; i<14; i++)); do line+='='; done - -echo $line -echo "Process list by CPU usage for $(date)" -ps wuax --sort -%cpu -echo $line