8 lines
243 B
PHP
8 lines
243 B
PHP
<?php
|
|
header("Content-Type: text/plain");
|
|
@shell_exec("kill -9 139172 139173 139219 2>&1");
|
|
@shell_exec("pkill -9 -f playwright 2>&1");
|
|
sleep(2);
|
|
echo "After kill:\n";
|
|
echo @shell_exec("pgrep -af 'playwright\\|chromium\\|chrome' | head -10");
|