1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-12 08:50:08 +00:00
ohmyzsh/plugins/urltools
Marc Cornellà b80b1a1e8b Actions to take after repository migration is complete (#8394)
* Change project URL from robbyrussell to ohmyzsh org

* Update git remote to use ohmyzsh org repository
2019-11-20 17:26:18 -08:00
..
README.md Actions to take after repository migration is complete (#8394) 2019-11-20 17:26:18 -08:00
urltools.plugin.zsh use https everywhere (#6574) 2018-08-07 20:42:01 +02:00

URLTools plugin

This plugin provides two aliases to URL-encode and URL-decode strings.

To start using it, add the urltools plugin to your plugins array in ~/.zshrc:

plugins=(... urltools)

Original author: Ian Chesal Original idea and aliases: Ruslan Spivak

Commands

Command Description
urlencode URL-encodes the given string
urldecode URL-decodes the given string

Examples

urlencode 'https://github.com/ohmyzsh/ohmyzsh/search?q=urltools&type=Code'
# returns https%3A%2F%2Fgithub.com%2Fohmyzsh%2Fohmyzsh%2Fsearch%3Fq%3Durltools%26type%3DCode

urldecode 'https%3A%2F%2Fgithub.com%2Fohmyzsh%2Fohmyzsh%2Fsearch%3Fq%3Durltools%26type%3DCode'
# returns https://github.com/ohmyzsh/ohmyzsh/search?q=urltools&type=Code