An open API service indexing awesome lists of open source software.

https://github.com/rix4uni/gocl

gocl is similar tool like go install command that install's go tools.
https://github.com/rix4uni/gocl

bug-bounty bugbounty bugbountytips go golang golang-tools hacking infosec osint osint-resources osint-tool penetration-testing pentest-tool pentesting recon reconnaissance security security-tools threat-intelligence tools

Last synced: about 1 year ago
JSON representation

gocl is similar tool like go install command that install's go tools.

Awesome Lists containing this project

README

          

## gocl

gocl is similar tool like `go install` command that install's go tools.

## Installation
```
go install github.com/rix4uni/gocl@latest
```

## Download prebuilt binaries
```
wget https://github.com/rix4uni/gocl/releases/download/v0.0.4/gocl-linux-amd64-0.0.4.tgz
tar -xvzf gocl-linux-amd64-0.0.4.tgz
rm -rf gocl-linux-amd64-0.0.4.tgz
mv gocl ~/go/bin/gocl
```
Or download [binary release](https://github.com/rix4uni/gocl/releases) for your platform.

## Compile from source
```
git clone --depth 1 github.com/rix4uni/gocl.git
cd gocl; go install
```

## Usage
```
Usage of gocl:
-i, --input string URL or file containing URLs of the repository to install
--version Print the version of the tool and exit.
```

## Examples
```
Usage:
gocl -i github.com/rix4uni/gocl
gocl -i urls.txt

Custom Path:
gocl -i github.com/projectdiscovery/chaos-client -c "cmd/chaos"

urls.txt:
github.com/rix4uni/gocl
github.com/rix4uni/unew
github.com/rix4uni/Gxss
```

#### You can do this manually but you need to run 3 commands
```
git clone --depth 1 https://github.com/rix4uni/gocl.git
cd gocl
go install
```