CNVRTR is a Command Line Interface written in Golang to convert mainly plain text to another encoding formats and vice-versa.
# Clone Repository
$ git clone https://github.com/LuanSilveiraSouza/cnvrtr.git
# Make sure that you have in your machine the dependencies of the project
$ go mod download
# Execute the project with
$ go run main.go
# Compile with
$ go install
It is recommended that you use go install
to access the cli in whatever place of your machine.
# To get all commands:
$ cnvrtr help
# Examples
$ cnvrtr ascii hey
# Output: 104 101 121
$ cnvrtr b64 aGVsbG8= -d
# Output: hello
$ cnvrtr b64 amazing -c
# Output: YW1hemluZw==
# -d/--decode: decode instead of encode
# -c/--clipboard: copy result to clipboard
Feel free to open new issues and colaborate with others issues in CNVRTR Issues
This project is completely open source, so if you want, consider forking it and making PRs with the changes you think its helpful to the project growns.
Released in 2020 under MIT License
Made with ❤️ by Luan Souza.