aboutsummaryrefslogtreecommitdiff
path: root/.oh-my-zsh/plugins/urltools/README.md
diff options
context:
space:
mode:
authorMarvin Borner2020-03-16 23:33:42 +0100
committerMarvin Borner2020-03-16 23:33:42 +0100
commit0e9ddbb0bf0cd34500155ea4b03de2e2a38d8ab2 (patch)
tree719da1c7fe5dabb872fe9ff1582c39b55ccd488e /.oh-my-zsh/plugins/urltools/README.md
parente5d38956336ab1be954bdbd12808c5f98f8bd925 (diff)
Well I'm using Arch again
Diffstat (limited to '.oh-my-zsh/plugins/urltools/README.md')
-rw-r--r--.oh-my-zsh/plugins/urltools/README.md29
1 files changed, 0 insertions, 29 deletions
diff --git a/.oh-my-zsh/plugins/urltools/README.md b/.oh-my-zsh/plugins/urltools/README.md
deleted file mode 100644
index 548301c..0000000
--- a/.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/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
-```