mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-01 05:21:06 +01:00
27 lines
567 B
Plaintext
27 lines
567 B
Plaintext
|
# 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>
|