Updated SC2009 (markdown)

koalaman
2014-07-26 12:59:01 -07:00
parent 89258df9a5
commit 79213ca46c

@@ -19,6 +19,7 @@ What if you have the pid and you are looking for the matching program name?
pid=123; ps ax | grep "$pid"
What if you want a range of the ps field, like from the 16th space to the end of the line?
ps ax | grep "$pid" | cut -d" " -f16-
Both are valid cases where SC2009 is not valid.