mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
17 lines
300 B
Bash
Executable file
17 lines
300 B
Bash
Executable file
#!/usr/local/plan9/bin/rc
|
|
|
|
if(~ $#* 0)
|
|
pid=core
|
|
if not
|
|
pid=$1
|
|
shift
|
|
if(! ~ $pid [0-9] [0-9]*[0-9] */core *.core core.* */core.* core){
|
|
name=$pid
|
|
pid=`{psu|awk '$NF=="'$name'" {print $2}'}
|
|
if(~ $#pid 0){
|
|
echo 'stack: no process '$name
|
|
exit none
|
|
}
|
|
}
|
|
for(p in $pid)
|
|
echo '$c' | 9 db -q $p $*
|