6 lines
96 B
Bash
6 lines
96 B
Bash
#!/bin/sh
|
|
|
|
pid=`ps aux | grep Crashdump | awk 'NR==1{print $2}'`
|
|
kill $pid
|
|
Crashdump --dump-now
|