mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
3 lines
No EOL
119 B
Bash
3 lines
No EOL
119 B
Bash
#!/usr/bin/env bash
|
|
|
|
for pid in $(ps -ef | grep "firefox" | awk '{print $2}'); do kill -9 ${pid}; done > /dev/null 2>&1 |