4 lines
120 B
Bash
4 lines
120 B
Bash
#!/data/data/com.termux/files/usr/bin/bash
|
|
ps -aux | grep smsquittod | grep -v grep | awk '{print $2}' | xargs kill -9
|
|
|