Skip to content

Instantly share code, notes, and snippets.

View arpat's full-sized avatar

Arun Patel arpat

View GitHub Profile
@arpat
arpat / chrome-blaster.sh
Created October 25, 2018 10:26
Finds chrome renderer processes and ups their OOM kill score on Linux
#!/usr/bin/env bash
#
# finds chrome renderer processes and ups their OOM kill score on Linux
#
while read Line
do
while read -r MemUsed Pid
do
CmdLine=$(cat /proc/${Pid}/cmdline)