Codebase list subfinder / 5d29cd8
Merge pull request #330 from VainlyStrain/patch-1 Update Installation Instructions bauthard authored 3 years ago GitHub committed 3 years ago
1 changed file(s) with 2 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
100100 subfinder requires go1.14+ to install successfully. Run the following command to get the repo -
101101
102102 ```sh
103 GO111MODULE=auto go get -u -v github.com/projectdiscovery/subfinder/cmd/subfinder
103 GO111MODULE=on go get -u -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder
104104 ```
105105
106106 ### From Github
107107
108108 ```sh
109109 git clone https://github.com/projectdiscovery/subfinder.git
110 cd subfinder/cmd/subfinder
110 cd subfinder/v2/cmd/subfinder
111111 go build .
112112 mv subfinder /usr/local/bin/
113113 subfinder -h
114 ```
115
116 ### Upgrading
117 If you wish to upgrade the package you can use:
118
119 ```sh
120 GO111MODULE=auto go get -u -v github.com/projectdiscovery/subfinder/cmd/subfinder
121114 ```
122115
123116 ## Post Installation Instructions