crayon-syntax-highlighter/util/sample/ps.txt

2 lines
134 B
Plaintext
Raw Normal View History

2019-08-30 19:30:19 +02:00
# Find the processes that use more than 1000 MB of memory and kill them
Get-Process | Where-Object { $_.WS -gt 1000MB } | Stop-Process