From 4d2c1b7080abb632c870477bd0015402a9e22de8 Mon Sep 17 00:00:00 2001 From: Roger Pack Date: Mon, 16 Jan 2017 09:59:32 -0700 Subject: [PATCH] make the ubuntu instructions more copy-pasteable use them all at once --- Installing-Wrk-on-Linux.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Installing-Wrk-on-Linux.md b/Installing-Wrk-on-Linux.md index 52788b2..b58c51f 100644 --- a/Installing-Wrk-on-Linux.md +++ b/Installing-Wrk-on-Linux.md @@ -7,15 +7,15 @@ What follows is brief instructions on how to install wrk on Linux. #Ubuntu/Debian (clean box) ```bash -sudo apt-get install build-essential libssl-dev git +sudo apt-get install build-essential libssl-dev git -y git clone https://github.com/wg/wrk.git cd wrk make -# move the executable to somewhere in your PATH +# move the executable to somewhere in your PATH, ex: sudo cp wrk /usr/local/bin ``` -Installs the build tools, open ssl dev libs (including headers), and git. Then uses git to download wrk and build. +The above installs build tools, open ssl dev libs (including headers), and git. Then uses git to download wrk and builds it from that. #CentOS / RedHat / Fedora