From 60829e34e2e9e7a22bd7c4fa118dbd78b21a4ffd Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Fri, 3 Jun 2016 11:17:18 -0400 Subject: [PATCH] fixed psa a bit more to actually show windows processes too. found it couldn't print out the steam process info. --- scripts/core/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.34.1