https://github.com/abarhub/gtools
https://github.com/abarhub/gtools
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/abarhub/gtools
- Owner: abarhub
- License: apache-2.0
- Created: 2023-02-13T08:23:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-10-18T07:39:42.000Z (10 months ago)
- Last Synced: 2025-10-18T09:22:01.303Z (10 months ago)
- Language: Go
- Homepage:
- Size: 146 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog
- License: LICENSE
Awesome Lists containing this project
README
# gtools


Tools for files
to build executable for windows
```shell
set GOOS=windows
set GOARCH=amd64
go build ./cmd/gtools.go
```
to build for linux
```shell
set GOOS=linux
set GOARCH=amd64
go build ./cmd/gtools.go
```
to build for raspberry
```shell
set GOOS=linux
set GOARCH=arm
set GOARM=5
go build ./cmd/gtools.go
```
to run tests
```shell
go test ./...
```
man
```
gtools is a super simple CLI tools
simple in CLI
Usage:
gtools [flags]
gtools [command]
Available Commands:
aes aes encrypt/decrypt
base64 encode/decode in base64
completion Generate the autocompletion script for the specified shell
copy copy files
du disk usage
help Help about any command
ls list files
merge merge files
mv move files
password generate password
rename rename files
rm remove files
split split file
time time execution of command
unzip unzip directory
zip zip directory
Flags:
-h, --help help for gtools
-v, --version version for gtools
Use "gtools [command] --help" for more information about a command.
```