4 lines
115 B
Bash
Executable file
4 lines
115 B
Bash
Executable file
#!/bin/rc
|
|
for(i){
|
|
ps | sed -n '/ '^$i^'$/s%^[^ ]* *([^ ]*).*%chmod 666 /proc/\1/ctl;echo kill > /proc/\1/ctl%p'
|
|
}
|