Skip to content

Commit

Permalink
fix(encode64): use proper encode file flags
Browse files Browse the repository at this point in the history
Fixes #12509
  • Loading branch information
carlosala committed Jun 17, 2024
1 parent 677f501 commit 7e4ee3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/encode64/encode64.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ encodefile64() {
if [[ $# -eq 0 ]]; then
echo "You must provide a filename"
else
base64 -i $1 -o $1.txt
base64 $1 > $1.txt
echo "${1}'s content encoded in base64 and saved as ${1}.txt"
fi
}
Expand Down

0 comments on commit 7e4ee3a

Please sign in to comment.