Project Tree
update version
Brett Robinson authored 6 years ago
README.md
A CLI tool for URL percent-encoding and percent-decoding text.
Euarel is a command line tool for URL percent-encoding and percent-decoding UTF-8 encoded text.
It is unicode aware, so characters like ♥ = %E2%99%A5
or π = %CF%80
are properly handled.
Working with the media type application/x-www-form-urlencoded
is possible by passing the --form
flag.
Examples:
euarel --encode 'text to encode'
euarel --decode 'text to decode'
euarel -ef 'encode form data'
printf 'redirect text to encode' | euarel -e
euarel --help
euarel --version
Environment:
Libraries:
./src/parg.hh
The following shell command will build the project in release mode:
1
./build.sh -r
To build in debug mode, run the script with the -d
flag.
The following shell command will install the project in release mode:
1
./install.sh -r
To install in debug mode, run the script with the -d
flag.