numerous minor changes to either use the sep function instead of old name of 'line...
[feisty_meow.git] / scripts / processes / show_hot_ones.sh
1 #!/bin/bash
2
3 # shows the current processes ordered by cpu usage.
4
5 sep
6 echo "Process list by CPU usage for $(date)"
7 ps wuax --sort -%cpu | head -n 8
8 sep