1
0
mirror of https://github.com/cheat/cheat.git synced 2025-05-28 02:47:06 +02:00

Merge pull request from engstrom/master

Added cheatsheet for the top command
This commit is contained in:
Chris Lane 2013-09-23 17:39:20 -07:00
commit 4bc2a27b57

26
cheatsheets/top Normal file

@ -0,0 +1,26 @@
# Update every <interval> samples:
top -i <interval>
# Set the delay between updates to <delay> seconds:
top -s <delay>
# Set event counting to accumulative mode:
top -a
# Set event counting to delta mode:
top -d
# Set event counting to absolute mode:
top -e
# Do not calculate statistics on shared libraries, also known as frameworks:
top -F
# Calculate statistics on shared libraries, also known as frameworks (default):
top -f
# Print command line usage information and exit:
top -h
# Order the display by sorting on <key> in descending order
top -o <key>