start time instead of run time

This commit is contained in:
ville rantanen
2017-08-07 14:45:43 +03:00
parent f130a9ffbf
commit 38e27f234e

View File

@@ -37,7 +37,7 @@ colMenu="\033[0;33m"
colWarn="\033[0;1;31m"
function fpgrep() {
pgrep -x -u $UID "$@" | xargs --no-run-if-empty ps -o pid,bsdtime,args;
pgrep -x -u $UID "$@" | xargs --no-run-if-empty ps -o pid,bsdstart,args;
test ${PIPESTATUS[0]} -ne 0 && echo '----'
}