https://github.com/dev-shimada/urlencode
urlencode cli
https://github.com/dev-shimada/urlencode
cli go golang homebrew urlencode
Last synced: about 1 month ago
JSON representation
urlencode cli
- Host: GitHub
- URL: https://github.com/dev-shimada/urlencode
- Owner: dev-shimada
- License: mit
- Created: 2025-02-22T07:13:50.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2026-01-10T12:05:38.000Z (about 1 month ago)
- Last Synced: 2026-01-11T03:12:04.331Z (about 1 month ago)
- Topics: cli, go, golang, homebrew, urlencode
- Language: Go
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://goreportcard.com/report/github.com/dev-shimada/urlencode)
[](https://github.com/dev-shimada/urlencode/actions/workflows/CI.yaml)
[](https://github.com/dev-shimada/urlencode/blob/master/LICENSE)
# urlencode
## Usage
To encode a string:
```
echo "Hello World" | urlencode encode
```
To encode spaces as %20:
```
echo "Hello World" | urlencode encode --use-percent-20
```
To decode a string:
```
echo "Hello%20World" | urlencode decode
```
## Installation
Install via Homebrew:
```
brew install --casks dev-shimada/urlencode/urlencode
```
## Generating Shell Completions
For bash:
```
urlencode completion bash > /etc/bash_completion.d/urlencode
```
For zsh:
```
urlencode completion zsh > ~/.zshrc.d/_urlencode
```
For fish:
```
urlencode completion fish | source
```