shithub: rc

ref: 864c67531f8f2144c9979a486afd3165c13ee816
dir: rc/fpl

View raw version
#!/bin/rc
ps -n | awk '
/ play$/ { g[++i] = $3 }
{ for(n=1; n<=i; n++) if(g[n] == $3) p[n] = $2 }
END { for(n=1; n<=i; n++) print p[n] }
'