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.
- Host: GitHub
- URL: https://github.com/rix4uni/gocl
- Owner: rix4uni
- Created: 2024-12-02T16:43:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-05T17:32:07.000Z (over 1 year ago)
- Last Synced: 2025-02-07T00:18:33.721Z (over 1 year ago)
- Topics: 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
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```