urlencode

A command line utility to urlencode strings
Log | Files | Refs | README | LICENSE

README.md (278B)


      1 # urlencode
      2 
      3 A command line utility to urlencode strings
      4 
      5 ## Abstract
      6 
      7 I needed this so I wrote it in like 3 mins. Use at your own peril.
      8 
      9 
     10 ## Install
     11 
     12 `go get github.com/markhuge/urlencode`
     13 
     14 ## Usage
     15 
     16 `echo some string foo bar | urlencode`
     17 
     18 output: `some%20string%20foo%20bar`