2005-09-18 18:23:51

by Andrea Arcangeli

[permalink] [raw]
Subject: oom_score script

Hello,

I sometime use this script to tune the oom_adj on some server, so I
thought it would be good idea to share it. First column is the pid,
second is the oom_score, third is the executable name.

Thanks.

#!/bin/sh

# (C) SUSE, GPL'd

ls /proc/*/oom_score| grep -v self | sed 's/\(.*\)\/\(.*\)/echo -n "\1 "; echo -n "`cat \1\/\2 2>\/dev\/null` "; readlink \1\/exe || echo/'|sh |sort -nr +1