8 lines
100 B
PHP
8 lines
100 B
PHP
|
<?php
|
||
|
|
||
|
$shellcommand2 = "nmcli c show > connections.csv"
|
||
|
|
||
|
$output = shell_exec($shellcommand2);
|
||
|
|
||
|
?>
|