Zeus-Scanner/etc/scripts/cleanup.sh

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