Updated SC2009 (markdown)

Eisuke Kawashima
2025-07-29 10:30:00 +09:00
parent dfad78728f
commit 5414a67744

@@ -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: 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 # pgrep does not support filtering by 'nice' value
# shellcheck disable=SC2009 # shellcheck disable=SC2009
ps -axo nice=,pid= | grep -v '^ 0' ps -axo nice=,pid= | grep -v '^ 0'