From f21541e07cff67a9ed3857cd45b4e6a7ccb08194 Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Sat, 8 Feb 2020 20:28:53 +0100 Subject: [PATCH] fixed copy command output --- fish/functions/copy.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fish/functions/copy.fish b/fish/functions/copy.fish index c16e0e3..81f7ff9 100644 --- a/fish/functions/copy.fish +++ b/fish/functions/copy.fish @@ -1,4 +1,4 @@ -# Defined in /tmp/fish.x8fmPB/copy.fish @ line 2 +# Defined in /tmp/fish.3o1P3O/copy.fish @ line 2 function copy - bash -c "cp -r '$argv[1]' '$dest'; echo -e \\nCopy of '$argv[1]' complete" & + bash -c "cp -r '$argv[1]' '$dest'; echo -e \"\\nCopy of '$argv[1]' complete\\n\"" & end