https://github.com/atompi/grabber
Grabber is a simple multi-web file parallel download tool
https://github.com/atompi/grabber
Last synced: 8 months ago
JSON representation
Grabber is a simple multi-web file parallel download tool
- Host: GitHub
- URL: https://github.com/atompi/grabber
- Owner: atompi
- License: apache-2.0
- Created: 2023-10-08T03:45:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-08T03:52:29.000Z (over 2 years ago)
- Last Synced: 2025-10-09T02:05:57.407Z (8 months ago)
- Language: Go
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Grabber
Grabber is a simple multi-web file parallel download tool, can be used for web file batch download, multi-configuration file batch synchronization and other scenarios.
## Usage
1. Create a project configuration file.
- ./grabber.yaml
```
threads: 5 # download work threads
sources: # multiple configuration projects sources
- url: https://git.atompi.com/atompi/conf/raw/branch/main/nginx # configuration project root url
auth: 123123 # access token (gitea)
files: # files in current project to download
- src: nginx.conf # file path based on project root
dest: /tmp/nginx/nginx.conf # destination path
- src: proxy.conf
dest: /tmp/nginx/proxy.conf
```
2. Run the program.
```
./grabber -c ./grabber.yaml
```