feat(fish): convert a few functions

This commit is contained in:
Stefan Imhoff
2023-06-27 11:39:51 +02:00
parent f0940ba15f
commit 46dc574bb9
8 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
function encodeBase64 --description "Encodes images in Base64"
uuencode -m $argv[1] /dev/stdout | sed 1d | sed '$d'
end