diff options
| author | Ashley Snowdon <ashley.snowdon@gmail.com> | 2013-03-13 11:21:43 +0000 |
|---|---|---|
| committer | Ashley Snowdon <ashley.snowdon@gmail.com> | 2013-03-13 11:21:43 +0000 |
| commit | 6c6072c492064abf613fc1b89b4d635020631ef4 (patch) | |
| tree | dfa35942ef709c72bedc2662acbc1e2210d0af72 | |
| parent | 0ab0e67ecfc52b4779b700149a9c51feeb05318e (diff) | |
| download | zsh-6c6072c492064abf613fc1b89b4d635020631ef4.tar.gz zsh-6c6072c492064abf613fc1b89b4d635020631ef4.tar.bz2 zsh-6c6072c492064abf613fc1b89b4d635020631ef4.zip | |
Modified to use full parameter as newer versions of base64 uses lowercase D
| -rw-r--r-- | plugins/encode64/encode64.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/encode64/encode64.plugin.zsh b/plugins/encode64/encode64.plugin.zsh index 3b59447c5..4dbd1b453 100644 --- a/plugins/encode64/encode64.plugin.zsh +++ b/plugins/encode64/encode64.plugin.zsh @@ -1,4 +1,4 @@ encode64(){ echo -n $1 | base64 } -decode64(){ echo -n $1 | base64 -D } +decode64(){ echo -n $1 | base64 --decode } alias e64=encode64 alias d64=decode64 |
