aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorForlot Romain [IoT.bzh] <claneys@iot.bzh>2017-03-28 12:27:47 +0200
committerGitHub <noreply@github.com>2017-03-28 12:27:47 +0200
commit4c2f5d1ada54760b262b0ddf8e50889b490d7ac3 (patch)
treee8206b5bccd45bc05537ca2b38b336fb99caa14b /README.md
parent25f7aa561cf07f9d46bc77a0733fe3bc350dea5e (diff)
Make export command copy/paste proof
Escaping variable in value to be able to copy/paste.
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 10b7780..f340955 100644
--- a/README.md
+++ b/README.md
@@ -17,11 +17,11 @@ AFB_daemon dependency on Standard Linux Distributions
```
# Might want to add following variables into ~/.bashrc
# export CC=gcc-5; export CXX=g++-5 # if using gcc5
- echo "export DEST=$HOME/opt" >>~/.bashrc
- echo "export LD_LIBRARY_PATH=$DEST/lib64" >>~/.bashrc
- echo "export LIBRARY_PATH=$DEST/lib64" >>~/.bashrc
- echo "export PKG_CONFIG_PATH=$DEST/lib64/pkgconfig" >>~/.bashrc
- echo "export PATH=$DEST/bin:$PATH" >>~/.bashrc
+ echo "export DEST=\$HOME/opt" >>~/.bashrc
+ echo "export LD_LIBRARY_PATH=\$DEST/lib64" >>~/.bashrc
+ echo "export LIBRARY_PATH=\$DEST/lib64" >>~/.bashrc
+ echo "export PKG_CONFIG_PATH=\$DEST/lib64/pkgconfig" >>~/.bashrc
+ echo "export PATH=\$DEST/bin:\$PATH" >>~/.bashrc
source ~/.bashrc
# install AGL pached version of LibMicroHttpd
@@ -68,4 +68,4 @@ Start a browser on http://localhost:1234?devid=hw:0
Start AlsaMixer and change volume you should see event in your browser
```
alsamixer -D hw:0
-``` \ No newline at end of file
+```