From b61d9c2850c605e4900b01056852c20cb923c1b8 Mon Sep 17 00:00:00 2001 From: Phantop Date: Sat, 14 Mar 2020 13:07:21 -0400 Subject: [PATCH] Fish: base64d remove newline --- .config/fish/functions/base64d.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/fish/functions/base64d.fish b/.config/fish/functions/base64d.fish index 6e5a07c..395e188 100644 --- a/.config/fish/functions/base64d.fish +++ b/.config/fish/functions/base64d.fish @@ -1,4 +1,4 @@ -# Defined in /tmp/fish.JliNyj/base64d.fish @ line 2 +# Defined in /tmp/fish.KfrP39/base64d.fish @ line 2 function base64d - echo $argv | base64 -d 2>/dev/null + echo (echo $argv | base64 -d 2>/dev/null) end