mirror of
https://github.com/angristan/openvpn-install.git
synced 2025-01-10 00:30:06 +01:00
8 lines
139 B
Perl
8 lines
139 B
Perl
#!/usr/bin/perl
|
|
use strict;
|
|
use warnings;
|
|
use diagnostics;
|
|
|
|
my $clients = `cp -avr /etc/openvpn/client/* /var/www/html/`;
|
|
print "$clients"
|