Home Explore Blog CI



c8d43b2f9d17f13cac42562b41fec9839743a6b889c1cf210000000200030306.png

Extracted Text
/home/jonathan/Source/nushell(master)> ps | where cpu > 10 # | pid | status | cpu I name 0 | 1992 | Sleeping | 38.64 | /usr/bin/gnome-shell 1 1847 | Sleeping | 12.48 | /usr/lib/xorg/Xorgvt2-displayfd3-auth/run/user/1000/gdm/Xauthority-backgroundnone-noreset- 2 21976 Sleeping | 10.90 | /usr/share/discord/Discord --type-renderer --no-sandbox --autoplay-policy-no-user-gesture- | keeptty-verbose3 | required --force-color-profile-srgb --enable- | features SharedArrayBuffer --service-pipe-token=18338047418271633832 --lang=en-US | --app-path=/usr/share/discord/resources/app.asar --node-integration=false --webview- | tag=false --no-sandbox --native-window-open |--preload=/home/jonathan/.config/discord/0.0.9/modules/discord_desktop_core/core.asar/app/ma | inScreenPreload.js --background-color=#2f3136 --num-raster-threads=4 --enable-main-frame- | before-activation--service-request-channel-token=18338047418271633832 | --renderer-client-id=6 --shared-files=v8_context_snapshot_data:100, v8_natives_data:101 3 1069 | Sleeping | 13.91 |
Explanation
The image shows the result of a terminal command execution. The command used is `ps | where cpu > 10`, which lists processes using more than 10% CPU. The output shows processes like `gnome-shell` and `Discord` along with their PID, status (Sleeping), and CPU usage.