summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnjan Nath <kaludios@gmail.com>2022-05-22 00:49:40 +0530
committeratanarjuat <atanarjuat@example.com>2022-05-22 22:43:40 +0200
commit1f9ed53a62b6d282f9e6ec01d165aafb6d507f6c (patch)
tree8afe62008a91eecdd00410e91c9cb9516e70618c
parent73afd2638952aa6ef27509897ef187101e0e526a (diff)
use correct braces for shell variable for easy c&p of command
-rw-r--r--docs/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/README.md b/docs/README.md
index ef9e4c6..75958a5 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -18,7 +18,7 @@ export LHOST=10.10.1.10:4430 # this is our obfs4 endpoint (private network;
export RHOST=163.172.126.44:443 # this is the GW IP (each obfsproxy is routing to only one openvpn GW).
cd server && make build
-sudo ./server -addr $(LHOST) -vpn $(RHOST) -state test_data -c test_data/obfs4.json
+sudo ./server -addr ${LHOST} -vpn ${RHOST} -state test_data -c test_data/obfs4.json
```
### 2. Run `obfsclient` to start a socks5 proxy in localhost