Try exec() and escapeshellarg():
Exec('command -param=' . Escapeshellarg($_GET['argument']));
This will let you execute a shell-script.
Exec('command -param=' . Escapeshellarg($_GET['argument']));
This will let you execute a shell-script.