X-Git-Url: https://src.twobees.de/?a=blobdiff_plain;f=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Furltools%2FREADME.md;fp=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Furltools%2FREADME.md;h=0000000000000000000000000000000000000000;hb=1a8e170bbe5c6641a26ab1ce2e6ce6c5c1faa4cd;hp=29c3710707f6ccc0da866fc87fee0eb713f2c266;hpb=475ba35502579302593f4735c853c49ef1845dcb;p=dotfiles.git diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/urltools/README.md b/stow/oh-my-zsh/.oh-my-zsh/plugins/urltools/README.md deleted file mode 100644 index 29c3710..0000000 --- a/stow/oh-my-zsh/.oh-my-zsh/plugins/urltools/README.md +++ /dev/null @@ -1,29 +0,0 @@ -# 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`: - -```zsh -plugins=(... urltools) -``` - -Original author: [Ian Chesal](https://github.com/ianchesal) -Original idea and aliases: [Ruslan Spivak](https://ruslanspivak.wordpress.com/2010/06/02/urlencode-and-urldecode-from-a-command-line/) - -## Commands - -| Command | Description | -| :---------- | :--------------------------- | -| `urlencode` | URL-encodes the given string | -| `urldecode` | URL-decodes the given string | - -## Examples - -```zsh -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 -```