shithub: rc

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