diff options
author | Robby Russell <robby@planetargon.com> | 2013-03-26 22:12:01 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-03-26 22:12:01 -0700 |
commit | d9bf1adca6a1cc342e9242c99508a3157d1013d6 (patch) | |
tree | a356fdd830e2075697ace84c7bd16cd14028791a /plugins | |
parent | 5cde893ce0ade6f192641f342a0d3d754a06bd80 (diff) | |
parent | 6c6072c492064abf613fc1b89b4d635020631ef4 (diff) | |
download | zsh-d9bf1adca6a1cc342e9242c99508a3157d1013d6.tar.gz zsh-d9bf1adca6a1cc342e9242c99508a3157d1013d6.tar.bz2 zsh-d9bf1adca6a1cc342e9242c99508a3157d1013d6.zip |
Merge pull request #1659 from AshleyS/master
Fixed base64 decode parameter for newer versions of base64 binary
Diffstat (limited to 'plugins')
-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 |