shithub: rc

ref: ddb87d830b72f16d514ec3a1eeb5fa2e4fc67539
dir: /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] }
'