You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			|  | 7 years ago | |
|---|---|---|
| .. | ||
| README.md | 7 years ago | |
| urltools.plugin.zsh | 7 years ago | |
		
			
				
				README.md
			
		
		
			
			
		
	
	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/robbyrussell/oh-my-zsh/search?q=urltools&type=Code'
# returns https%3A%2F%2Fgithub.com%2Frobbyrussell%2Foh-my-zsh%2Fsearch%3Fq%3Durltools%26type%3DCode
urldecode 'https%3A%2F%2Fgithub.com%2Frobbyrussell%2Foh-my-zsh%2Fsearch%3Fq%3Durltools%26type%3DCode'
# returns https://github.com/robbyrussell/oh-my-zsh/search?q=urltools&type=Code