From: Chris Koeritz Date: Fri, 3 Jun 2016 15:17:18 +0000 (-0400) Subject: fixed psa a bit more to actually show windows processes too. found it couldn't print... X-Git-Tag: 2.140.90~521 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=60829e34e2e9e7a22bd7c4fa118dbd78b21a4ffd;p=feisty_meow.git fixed psa a bit more to actually show windows processes too. found it couldn't print out the steam process info. --- diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index c631a0aa..b5bbf95d 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -261,7 +261,7 @@ if [ -z "$skip_all" ]; then # special case for windows. ps | head -1 for curr in $p; do - ps -p $curr | tail -n +2 + ps -W -p $curr | tail -n +2 done else # normal OSes can handle a nice simple query.