]> Cypherpunks.ru repositories - govpn.git/commitdiff
POSIX tells that $ character is default shell prompt
authorSergey Matveev <stargrave@stargrave.org>
Thu, 3 Oct 2019 12:45:31 +0000 (15:45 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Thu, 3 Oct 2019 12:45:31 +0000 (15:45 +0300)
doc/client.texi
doc/egd.texi
doc/installation.texi
doc/integrity.texi
doc/proxy.texi
doc/server.texi
doc/sources.texi
doc/stats.texi
doc/verifier.texi

index 42b8a65910f2a1e18ecef5f0d86f33d797c7a454..8329dfed1ad490c3a102597bc25578dde3881159 100644 (file)
@@ -68,10 +68,10 @@ Example up-script that calls DHCP client and IPv6 advertisement
 solicitation:
 
 @verbatim
-client% cat > up.sh <<EOF
+client$ cat > up.sh <<EOF
 #!/bin/sh
 dhclient $GOVPN_IFACE
 rtsol $GOVPN_IFACE
 EOF
-client% chmod +x up.sh
+client$ chmod +x up.sh
 @end verbatim
index 06d69b033b7050fb2be4cd50aa3684d7dc1e3e92..6a3dd975104e7303340ff2c2e5198666776d4acf 100644 (file)
@@ -15,5 +15,5 @@ library you provide @option{-egd PATH} command line option, where
 @code{PATH} is the domain socket.
 
 @verbatim
-% ./govpn-server [...] -egd /var/run/egd.sock
+$ ./govpn-server [...] -egd /var/run/egd.sock
 @end verbatim
index 1f8a74c36bf06b4a70a4965f2c595b21d6b554c8..97bc8c76c8d313165044ca43d76abb464792b657 100644 (file)
@@ -26,11 +26,11 @@ Get @ref{Tarballs, the tarball}, check its
 binaries will be built in the current directory:
 
 @verbatim
-% wget http://www.govpn.info/download/govpn-2.3.tar.xz
-% wget http://www.govpn.info/download/govpn-2.3.tar.xz.sig
-% gpg --verify govpn-2.3.tar.xz.sig govpn-2.3.tar.xz
-% tar xf govpn-2.3.tar.xz
-% make -C govpn-2.3 all
+$ wget http://www.govpn.info/download/govpn-2.3.tar.xz
+$ wget http://www.govpn.info/download/govpn-2.3.tar.xz.sig
+$ gpg --verify govpn-2.3.tar.xz.sig govpn-2.3.tar.xz
+$ tar xf govpn-2.3.tar.xz
+$ make -C govpn-2.3 all
 @end verbatim
 
 There is @command{install} target respecting @env{DESTDIR}.
index 149b2db3a7736eda71da3880a8ebd1aa915cea1c..971ff40f446660ef0e400f2354c32bf66ef35b4a 100644 (file)
@@ -23,8 +23,8 @@ public key fingerprint.
 
 @item
 @verbatim
-% gpg --auto-key-locate dane --locate-keys releases at govpn dot info
-% gpg --auto-key-locate wkd --locate-keys releases at govpn dot info
+$ gpg --auto-key-locate dane --locate-keys releases at govpn dot info
+$ gpg --auto-key-locate wkd --locate-keys releases at govpn dot info
 @end verbatim
 
 @item
@@ -34,5 +34,5 @@ public key fingerprint.
 
 Then you could verify tarballs signature:
 @verbatim
-% gpg --verify govpn-2.3.tar.xz.sig govpn-2.3.tar.xz
+$ gpg --verify govpn-2.3.tar.xz.sig govpn-2.3.tar.xz
 @end verbatim
index f80b947db2ab9ceb4c0da95bc12a0e2e4cc257db..9be0ea211147ade97e06c246abb4aee813ece9c5 100644 (file)
@@ -16,7 +16,7 @@ CONNECT method. Optionally it can be authenticated on it using
 @emph{-proxy-auth} HTTP Basic method.
 
 @verbatim
-% govpn-client [...] -proto tcp \
+$ govpn-client [...] -proto tcp \
     -remote "$REMOTE_ADDR":1194 \
     -proxy 192.168.55.1:8888 \
     -proxy-auth mylogin:password
index b3e9ac7d8118c551af7ba05ed4bb30452a8c6519..f91426a780acedc287ec06680b5819a5ce82b37a 100644 (file)
@@ -61,7 +61,7 @@ You can use convenient @command{utils/newclient.sh} script for new client
 creation:
 
 @verbatim
-% ./utils/newclient.sh Alice
+$ ./utils/newclient.sh Alice
 [...]
 Your client verifier is: $balloon$s=32768,t=16,p=2$bwR5VjeCYIQaa8SeaI3rqg
 
index 7ceeebf2a8a113e4e0e32aee46f08488c965924b..a3fc16baea27c9994c9aaef69c0787ee181ad16f 100644 (file)
@@ -11,10 +11,10 @@ You can obtain it by cloning @url{http://git-scm.com/, Git}
 and fetching dependent libraries source code as git submodules:
 
 @verbatim
-% git clone git://git.cypherpunks.ru/govpn.git govpn
-% cd govpn
-% git checkout develop
-% git submodule update --init
+$ git clone git://git.cypherpunks.ru/govpn.git govpn
+$ cd govpn
+$ git checkout develop
+$ git submodule update --init
 @end verbatim
 
 Also there is mirror of dependent libraries for safety if their native
index e90cc3b9ceed952fb7bd3a0036ec600ca149ca03..78c46460713d2356558b1fe9a0c0ae32522163a4 100644 (file)
@@ -11,8 +11,8 @@ reads from it (does not parse anything) and writes dummy headers with
 JSON document.
 
 @verbatim
-% govpn-server [...] -stats "[::1]:5678"
-% curl http://localhost:5678/ | jq .
+$ govpn-server [...] -stats "[::1]:5678"
+$ curl http://localhost:5678/ | jq .
 [
   {
     "HeartbeatSent": 1,
index ecf98ad6ddc606342e78dc7886c1c19c99014b01..e27417dd939a5714dba567594520ea8156901780 100644 (file)
@@ -4,7 +4,7 @@
 Verifier is created using @command{govpn-verifier} utility.
 
 @verbatim
-% govpn-verifier
+$ govpn-verifier
 Passphrase:[hello world]
 $balloon$s=32768,t=16,p=2$bwR5VjeCYIQaa8SeaI3rqg$KCNIqfS4DGsBTtVytamAzcISgrlEWvNxan1UfBrFu10
 $balloon$s=32768,t=16,p=2$bwR5VjeCYIQaa8SeaI3rqg
@@ -18,7 +18,7 @@ You can check passphrase against verifier by specifying @option{-verifier}
 option with the path to verifier file:
 
 @verbatim
-% govpn-verifier -verifier '$balloon...'
+$ govpn-verifier -verifier '$balloon...'
 Passphrase:[hello world]
 true
 @end verbatim