From 0b34b52281ea9c09033b8a68ecfbd77ff3c14884 Mon Sep 17 00:00:00 2001 From: karanS08 <66710785+karanS08@users.noreply.github.com> Date: Wed, 9 Nov 2022 15:36:13 +0530 Subject: [PATCH] Removed the $ from the commands. (#1735) --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 263b109fa9..a1d91e6ea0 100644 --- a/README.md +++ b/README.md @@ -95,20 +95,20 @@ To install and run SpiderFoot, you need at least Python 3.7 and a number of Pyth #### Stable build (packaged release): ``` -$ wget https://github.com/smicallef/spiderfoot/archive/v4.0.tar.gz -$ tar zxvf v4.0.tar.gz -$ cd spiderfoot-4.0 -$ pip3 install -r requirements.txt -$ python3 ./sf.py -l 127.0.0.1:5001 + wget https://github.com/smicallef/spiderfoot/archive/v4.0.tar.gz + tar zxvf v4.0.tar.gz + cd spiderfoot-4.0 + pip3 install -r requirements.txt + python3 ./sf.py -l 127.0.0.1:5001 ``` #### Development build (cloning git master branch): ``` -$ git clone https://github.com/smicallef/spiderfoot.git -$ cd spiderfoot -$ pip3 install -r requirements.txt -$ python3 ./sf.py -l 127.0.0.1:5001 + git clone https://github.com/smicallef/spiderfoot.git + cd spiderfoot + pip3 install -r requirements.txt + python3 ./sf.py -l 127.0.0.1:5001 ``` Check out the [documentation](https://www.spiderfoot.net/documentation) and our [asciinema videos](https://asciinema.org/~spiderfoot) for more tutorials.