From 5414a677445c145923e011771ef3c2673e3cc36e Mon Sep 17 00:00:00 2001 From: Eisuke Kawashima Date: Tue, 29 Jul 2025 10:30:00 +0900 Subject: [PATCH] Updated SC2009 (markdown) --- SC2009.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2009.md b/SC2009.md index 9f9e31e..162a201 100644 --- a/SC2009.md +++ b/SC2009.md @@ -34,7 +34,7 @@ This is more robust than `ps .. | grep python | cut ..` because it does not try You can [[ignore]] this error if you are trying to match against something that `pgrep` doesn't support: -``` +```sh # pgrep does not support filtering by 'nice' value # shellcheck disable=SC2009 ps -axo nice=,pid= | grep -v '^ 0'