blob: 7402c9e8a503990ca1ef4d7437de5a863da8fd98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env ucode
// cmd ip address port number
print('cmd ', ARGV[0],' ip ', ARGV[1], ' address ', ARGV[2], ' port ', ARGV[3], ' number ', ARGV[4], '"\n');
// See the environment variables passed to this script: https://ucode.mein.io/module-core.html#getenv
print(getenv(), '\n');
// https://openvpn.net/community-docs/community-articles/openvpn-2-6-manual.html#environmental-variables-177179
|