Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Latest commit

 

History

History
32 lines (21 loc) · 939 Bytes

File metadata and controls

32 lines (21 loc) · 939 Bytes

USAGE: urldecode [OPTIONS] [STRING_TO_ENCODE]

DESCRIPTION

urldecode is a simple command line utility to URL decode content. By default it reads from standard input and writes to standard out. You can also specifty the string to decode as a command line parameter.

OPTIONS

-examples            display example(s)
-generate-markdown   generate markdown documentation
-h, -help            display help
-i, -input           set input filename
-l, -license         display license
-nl, -newline        if true add a trailing newline to output
-o, -output          set output filename
-q, -query           use query escape (pluses for spaces)
-quiet               suppress error messages
-v, -version         display version

EXAMPLES

echo 'This%20is%20the%20string%20to%20encode%20&%20nothing%20else%0A' | urldecode

would yield

This is the string to encode & nothing else!

urldecode 1.0.4