6 lines
152 B
PHP
6 lines
152 B
PHP
<?php
|
|
header("Content-Type: text/plain");
|
|
@shell_exec("pkill -f playwright 2>&1");
|
|
echo "killed\n";
|
|
echo @shell_exec("pgrep -af playwright | head -5");
|