Created
September 16, 2015 10:22
-
-
Save obukhov/96c962346fd6357e4b0f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# top log oneliner | |
# outputs first 6 lines of top command every second | |
while :; do top -b -n 1 | head -n6; sleep 1; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment