moiaune / urled

A url encoder / decoder command line utility

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

URLED

A URL encoder/decoder command line utility.

Installation

go install github.com/madsaune/urled

Usage

Encode

Using stdin.

~ $ urled -encode
hello world
<CTRL-D>
hello+world

Using pipe.

~ $ echo "hello world" | urled -encode
hello+world

Using -input flag.

~ $ urled -encode -input "hello world"
hello+world

Decode

Using stdin.

~ $ urled -decode
hello+world
<CTRL-D>
hello world

Using pipe.

~ $ echo "hello+world" | urled -decode
hello world

Using -input flag.

~ $ urled -decode -input "hello+world"
hello world

About

A url encoder / decoder command line utility

License:GNU General Public License v3.0


Languages

Language:Go 100.0%